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-12.m
blob
78a19d306d9f5bf995c04f2fcea9f32cede04675
1
#include <objc/objc.h>
2
3
@interface MyObject
4
{
5
Class isa;
6
float f;
7
char a[3];
8
int i:2;
9
int j:6;
10
int s;
11
int k:12;
12
char d;
13
void *pointer;
14
}
15
@end
16
17
@implementation MyObject
18
@end
19
20
#include "bf-common.h"
21