xref: /aosp_15_r20/external/skia/resources/sksl/errors/SwitchDuplicateVariable.rts (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1// crbug.com/oss-fuzz/70613
2void fn() {
3    switch (1) {
4        case 2: int x, x;
5    }
6}
7
8/*%%*
9symbol 'x' was already defined
10symbol 'x' was already defined
11*%%*/
12