Sign in
skia
/
skia
/
437cd4d85737039dd9719667905832982b843574
/
.
/
resources
/
sksl
/
errors
/
BadIndex.rts
blob: d68b32ec16bdacd7b7a65c27472f0d998ea23ff1 [
file
] [
log
] [
blame
]
void
int_not_array
()
{
int
x
=
2
[
0
];
}
void
index_float2_twice
()
{
float2 x
=
float2
(
0
);
int
y
=
x
[
0
][
0
];
}
/*%%*
expected array, but found 'int'
expected array, but found 'float'
*%%*/