minic/tests/10.test

8 lines
97 B
Plaintext
Raw Permalink Normal View History

2022-01-27 16:31:58 +01:00
char a = 'A';
a = 'B';
char b;
b = 'a';
/* b = 1; // it should fail */
int c = 1 + 10;
return a;