mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
9 lines
149 B
C
9 lines
149 B
C
|
/* bug #1893 - Compiler accepts a ternary expression where it shouldn't */
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
int a, b, c;
|
||
|
a == 1? b : c = 3;
|
||
|
return 0;
|
||
|
}
|