summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaObjCXX/cxx1y-lambda.mm
blob: 25445cc68c5e8cc8a63359cc2e207648a5bfddcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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";
    }
  };
}
OpenPOWER on IntegriCloud