summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/ibaction.m
blob: b97e002833c98abb1454cf9eca480894190abe27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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
OpenPOWER on IntegriCloud