opnsense-src/test/SemaObjC/method-encoding-2.m

13 lines
451 B
Mathematica
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 %s
2009-06-02 13:58:47 -04:00
// TODO: We don't support rewrite of method definitions
@interface Intf
- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2;
- (id) another:(void *)location with:(unsigned **)arg2;
@end
@implementation Intf
2009-10-14 14:03:49 -04:00
- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2{ return 0; }
- (id) another:(void *)location with:(unsigned **)arg2 { return 0; }
2009-06-02 13:58:47 -04:00
@end