You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
351 B
20 lines
351 B
4 months ago
|
// 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
|
||
|
|
||
|
// rdar://problem/22344904
|
||
|
void testResultTypeDeduction(int i) {
|
||
|
auto x = [i] {
|
||
|
switch (i) {
|
||
|
case 0:
|
||
|
return @"foo";
|
||
|
|
||
|
default:
|
||
|
return @"bar";
|
||
|
}
|
||
|
};
|
||
|
}
|