forked from OSchip/llvm-project
16 lines
413 B
Mathematica
16 lines
413 B
Mathematica
|
// RUN: %clang_cc1 %s -verify
|
||
|
|
||
|
@interface Foo
|
||
|
{
|
||
|
__attribute__((iboutlet)) id myoutlet;
|
||
|
}
|
||
|
- (void) __attribute__((ibaction)) myMessage:(id)msg;
|
||
|
@end
|
||
|
|
||
|
@implementation Foo
|
||
|
// Normally attributes should not be attached to method definitions, but
|
||
|
// we allow 'ibaction' to be attached because it can be expanded from
|
||
|
// the IBAction macro.
|
||
|
- (void) __attribute__((ibaction)) myMessage:(id)msg {} // no-warning
|
||
|
@end
|