mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
18 lines
264 B
Objective-C
18 lines
264 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
@interface MyObject {
|
|
int _foo;
|
|
}
|
|
@end
|
|
|
|
@interface MyObject(whatever)
|
|
@property (assign) int foo;
|
|
@end
|
|
|
|
@interface MyObject()
|
|
@property (assign) int foo;
|
|
@end
|
|
|
|
@implementation MyObject
|
|
@synthesize foo = _foo;
|
|
@end
|