Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / objc / single-entry-dictionary / main.m
blobbe472fd43c3db9b2958d627bd0d721f4a8e9e54c
1 #import <Foundation/Foundation.h>
3 int main() {
4   NSDictionary *d1 = @{@"key" : @"value"};
5   NSLog(@"%@\n", d1); // break here
6   return 0;