[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / crashes.m
blobaecc045821aff38843c61ffe0546740b3430402b
1 // RUN: rm -rf %t.mcp
2 // RUN: %clang_cc1 -fmodules-cache-path=%t.mcp -fmodules -fimplicit-module-maps -F %S/Inputs -fobjc-arc %s -verify
4 @import Module;
6 __attribute__((objc_root_class))
7 @interface Test
8 // The diagnostic will try to find a suitable macro name to use (instead of raw __attribute__).
9 // 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.
10 @property (assign) id newFile; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} \
11                                // expected-note {{explicitly declare getter '-newFile' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
12 @end
14 @implementation Test
15 @end