summaryrefslogtreecommitdiff
path: root/05/main.c
blob: 899e6b9614b777c31bf64f5d94308238e2be600e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
; @NONSTANDARD:
;  the following does not work:
;     typedef struct T Type;
;     struct T{
;            int m;
;     };
;     ...
;     Type *x = ...;
;     x->m;   *trying to access member of incomplete struct
This needs to be fixed because otherwise you can't do:
struct A { struct B *blah; }
struct B { struct A *blah; }
*/

int main(int argc, char **argv) {
	return (float)(long)"hello";
}