blob: 92c62904d57b2a869af2464eb4955197ffb01ca7 [file] [log] [blame]
Douglas Gregor621003e2012-02-14 21:20:44 +00001// RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -verify
2
3@interface A
4@end
5
6void test_result_type() {
Eli Friedman31a5bcc2013-06-14 21:14:10 +00007 auto l1 = [] () -> A { }; // expected-error{{interface type 'A' cannot be returned by value; did you forget * in 'A'?}}
Douglas Gregor621003e2012-02-14 21:20:44 +00008}