[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / SemaObjC / ibaction.m
blob43c927ce264fcd2b7405f4a5a9c3cb0aab59117c
1 // RUN: %clang_cc1 -verify -Wno-objc-root-class %s
3 @interface Foo 
5   __attribute__((iboutlet)) id myoutlet;
7 + (void) __attribute__((ibaction)) myClassMethod:(id)msg; // expected-warning{{'ibaction' attribute only applies to Objective-C instance methods}}
8 - (void) __attribute__((ibaction)) myMessage:(id)msg;
9 @end
11 @implementation Foo
12 + (void) __attribute__((ibaction)) myClassMethod:(id)msg {} // expected-warning{{'ibaction' attribute only applies to Objective-C instance methods}}
13 // Normally attributes should not be attached to method definitions, but
14 // we allow 'ibaction' to be attached because it can be expanded from
15 // the IBAction macro.
16 - (void) __attribute__((ibaction)) myMessage:(id)msg {} // no-warning
17 @end