Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
runtime_errors
/
FirstClassArrays.rts
blob: 8723512b6b2ae32315665a8b0dbcd3bb28527ec5 [
file
] [
log
] [
blame
]
// Expect 2 errors
void
array_decl
()
{
float
[
123
]
x
;
}
void
array_ctor
()
{
float
[
3
](
1
,
2
,
3
);
}