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.
 
 
 

13 lines
143 B

int
main()
{
struct T { int x; } s1;
s1.x = 1;
{
struct T { int y; } s2;
s2.y = 1;
if (s1.x - s2.y != 0)
return 1;
}
return 0;
}