llvm-project/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/main.m

8 lines
141 B
Objective-C

#import <Foundation/Foundation.h>
int main() {
NSDictionary *d1 = @{@"key" : @"value"};
NSLog(@"%@\n", d1); // break here
return 0;
}