reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
// RUN: %clang_cc1 -triple x86_64-apple-macosx10.11.0 -std=gnu++11 -o /dev/null -x objective-c++ -fblocks -ast-dump %s 2>&1 | FileCheck %s

// CHECK:      -FunctionDecl {{.*}} test 'id ()'
// CHECK-NEXT:   -CompoundStmt
// CHECK-NEXT:     -ReturnStmt
// CHECK-NEXT:       -ExprWithCleanups
// CHECK-NEXT:         -cleanup Block
// CHECK-NEXT:         -cleanup Block

@interface NSDictionary
+ (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
@end

id test() {
  return @{@"a": [](){}, @"b": [](){}};
}