brintos

brintos / llvm-project-archived public Read only

0
0
Text · 225 B · 92c6290 Raw
9 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -verify2 3@interface A4@end5 6void test_result_type() {7  auto l1 = [] () -> A { }; // expected-error{{interface type 'A' cannot be returned by value; did you forget * in 'A'?}}8}9