Sign in
cobalt
/
cobalt.git
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
skia
/
resources
/
sksl
/
errors
/
BadIndex.sksl
blob: d68b32ec16bdacd7b7a65c27472f0d998ea23ff1 [
file
]
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'
*%%*/