bolt/deps/llvm-18.1.8/clang/test/SemaObjCXX/cxx1y-lambda.mm

19 lines
324 B
Text
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -std=c++1y -Wno-unused-value -fsyntax-only -verify -fobjc-arc %s
// expected-no-diagnostics
__attribute__((objc_root_class))
@interface NSString
@end
void testResultTypeDeduction(int i) {
auto x = [i] {
switch (i) {
case 0:
return @"foo";
default:
return @"bar";
}
};
}