e609598fe6
This is enforced by ANGLE in Strict ES2 mode; we need to enforce it as well. Change-Id: I6e2f547ad8e0ce817742cf84659764cf6bce38b9 Bug: skia:11270 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/366339 Commit-Queue: John Stiles <johnstiles@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
7 lines
99 B
Plaintext
7 lines
99 B
Plaintext
// Expect 2 errors
|
|
|
|
void array_decl() { float[123] x; }
|
|
|
|
void array_ctor() { float[3](1, 2, 3); }
|
|
|