xref: /llvm-project/lldb/test/API/lang/objc/single-entry-dictionary/main.m (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1#import <Foundation/Foundation.h>
2
3int main() {
4  NSDictionary *d1 = @{@"key" : @"value"};
5  NSLog(@"%@\n", d1); // break here
6  return 0;
7}
8