xref: /aosp_15_r20/external/skia/tests/sksl/errors/ModifiersRepeated.glsl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1### Compilation failed:
2
3error: 1: 'const' appears more than once
4const const float a = 0;
5      ^^^^^
6error: 2: 'uniform' appears more than once
7uniform flat uniform int b;
8             ^^^^^^^
9error: 3: 'flat' appears more than once
10uniform flat noperspective flat noperspective uniform half4 c;
11                           ^^^^
12error: 3: 'noperspective' appears more than once
13uniform flat noperspective flat noperspective uniform half4 c;
14                                ^^^^^^^^^^^^^
15error: 3: 'uniform' appears more than once
16uniform flat noperspective flat noperspective uniform half4 c;
17                                              ^^^^^^^
18error: 4: 'in' appears more than once
19in inout float d;
20   ^^^^^
21error: 5: 'out' appears more than once
22inout out half e;
23      ^^^
24error: 6: 'inout' appears more than once
25inout inout int f;
26      ^^^^^
278 errors
28