C compiler with embedded metalanguage.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 rivejä
317 B

//generalized lvalues
foo() {
int a,b,f;
(a, b) += 5;
a, (b += 5);
&(a, b);
a, &b;
(a ? b : c) = 5 ;
(a ? b = 5 : (c = 5)) ;
(int)a = 5 ;
(int)(a = (char *)(int)5) ;
(int)a += 5;
(int)(a = (char *)(int) ((int)a + 5));
(int)f = 1;
(int *)&f;
}