bolt/deps/llvm-18.1.8/lldb/test/API/lang/objc/single-entry-dictionary/main.m
2025-02-14 19:21:04 +01:00

7 lines
141 B
Objective-C

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