repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
objc
/
execute
/
bf-13.m
blob
fa47238b03703a5ced2fb43e9fe8093213bd2e4d
1
#include <objc/objc.h>
2
3
@interface MyObject
4
{
5
Class isa;
6
float f;
7
char a[3];
8
struct {
9
int i:2;
10
int j:6;
11
char s;
12
int k:12;
13
} flags;
14
char d;
15
void *pointer;
16
}
17
@end
18
19
@implementation MyObject
20
@end
21
22
#include "bf-common.h"
23