Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
errors
/
BadIndex.sksl
blob: cbc5f131369a9b5cf0952d8ce05fdde62603d9c8 [
file
] [
log
] [
blame
]
void
int_not_array
()
{
int
x
=
2
[
0
];
}
void
index_float2_twice
()
{
float2 x
=
float2
(
0
);
int
y
=
x
[
0
][
0
];
}