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-16.m
blob
e286de7c29b8bbc967268d1ac989c3e0018c94c0
1
#include <objc/objc.h>
2
3
struct A {
4
int i;
5
float f;
6
int a:3;
7
int b:2;
8
};
9
10
@interface MyObject
11
{
12
Class isa;
13
int i;
14
float f[3];
15
struct A a, b;
16
char c;
17
}
18
@end
19
20
@implementation MyObject
21
@end
22
23
#include "bf-common.h"