blob: c785bd19f2298f3a1752f9ce4aa77daf84c8369b [file] [log] [blame]
Argyrios Kyrtzidis5c585252015-03-04 16:03:07 +00001// RUN: rm -rf %t.mcp
Richard Smith47972af2015-06-16 00:08:24 +00002// RUN: %clang_cc1 -fmodules-cache-path=%t.mcp -fmodules -fimplicit-module-maps -F %S/Inputs -fobjc-arc %s -verify
Argyrios Kyrtzidis5c585252015-03-04 16:03:07 +00003
4@import Module;
5
6__attribute__((objc_root_class))
7@interface Test
8// rdar://19904648
Argyrios Kyrtzidisd2d35972015-03-05 03:12:33 +00009// The diagnostic will try to find a suitable macro name to use (instead of raw __attribute__).
10// While iterating through the macros it would dereference a null pointer if the macro was undefined in the same module as it was originally defined in.
Argyrios Kyrtzidis5c585252015-03-04 16:03:07 +000011@property (assign) id newFile; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} \
Argyrios Kyrtzidisd2d35972015-03-05 03:12:33 +000012 // expected-note {{explicitly declare getter '-newFile' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
Argyrios Kyrtzidis5c585252015-03-04 16:03:07 +000013@end
14
15@implementation Test
16@end