skia2/resources/sksl/errors/SwitchDuplicateCase.rts
John Stiles 6424dd02a8 Rename ES2 error tests starting with 'S' to .rts.
Change-Id: I1dd481ca47965e933a110a0f0a8ef7616deb034d
Bug: skia:13042
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/523417
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: Arman Uguray <armansito@google.com>
Commit-Queue: John Stiles <johnstiles@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
2022-03-22 17:08:16 +00:00

13 lines
144 B
Plaintext

void func() {
switch (1) {
case 0:
case 1:
case 0:
break;
}
}
/*%%*
duplicate case value '0'
*%%*/