mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
13 lines
190 B
C
13 lines
190 B
C
|
/* bug #1222 - 'sizeof' issues */
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int a[1];
|
||
|
int b[sizeof ++a[42]]; /* should work as '++a[42]' is actually unevaluated */
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|