blob: 587060d1d4269688720c9be7be9684745882514b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <objc/objc.h>
typedef enum
{
A, B
} enumeration;
@interface MyObject
{
enumeration g:4;
}
@end
@implementation MyObject
@end
#include "bf-common.h"
|