brintos

brintos / llvm-project-archived public Read only

0
0
Text · 324 B · 589e66d Raw
19 lines · plain
1// RUN: %clang_cc1 -std=c++1y -Wno-unused-value -fsyntax-only -verify -fobjc-arc %s2 3// expected-no-diagnostics4__attribute__((objc_root_class))5@interface NSString6@end7 8void testResultTypeDeduction(int i) {9  auto x = [i] {10    switch (i) {11    case 0:12      return @"foo";13 14    default:15      return @"bar";16    }17  };18}19