2020-09-17 22:20:26 +00:00
|
|
|
### Compilation failed:
|
|
|
|
|
|
|
|
error: 1: expected array, but found 'int'
|
2022-04-06 22:24:52 +00:00
|
|
|
void int_not_array() { int x = 2[0]; }
|
|
|
|
^
|
2020-09-17 22:20:26 +00:00
|
|
|
error: 2: expected array, but found 'float'
|
2022-04-06 22:24:52 +00:00
|
|
|
void index_float2_twice() { float2 x = float2(0); int y = x[0][0]; }
|
|
|
|
^^^^
|
2020-09-17 22:20:26 +00:00
|
|
|
2 errors
|