Dead
[official-gcc.git] / gomp-20050608-branch / libmudflap / testsuite / libmudflap.c / pass15-frag.c
blob5e1fee8eb9c9aa5675cf92566d0f3efe5d3f2b6d
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 int main ()
6 struct base {
7 int basic;
8 };
10 struct derived {
11 struct base common;
12 char extra;
15 struct derived d;
16 struct base *bp;
18 bp = (struct base *)&d;
20 bp->basic = 10;
21 ((struct derived *)bp)->extra = 'x';
22 return 0;