This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d. This commit wasn't reviewed ahead of time and significant concerns were raised immediately after it landed. According to our developer policy this warrants immediate revert of the commit. https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy Differential Revision: https://reviews.llvm.org/D155509
17 lines
798 B
Objective-C
17 lines
798 B
Objective-C
// RUN: rm -rf %t.mcp
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t.mcp -fmodules -fimplicit-module-maps -F %S/Inputs -fobjc-arc %s -verify
|
|
|
|
@import Module;
|
|
|
|
__attribute__((objc_root_class))
|
|
@interface Test
|
|
// rdar://19904648
|
|
// The diagnostic will try to find a suitable macro name to use (instead of raw __attribute__).
|
|
// 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.
|
|
@property (assign) id newFile; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} \
|
|
// expected-note {{explicitly declare getter '-newFile' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
|
|
@end
|
|
|
|
@implementation Test
|
|
@end
|