xref: /aosp_15_r20/external/skia/resources/sksl/errors/StructVariableReservedName.rts (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1struct S {
2    float f;
3} float;
4
5float4 main() {
6    return float.f.xxxx;
7}
8
9/*%%*
10expected ';', but found 'float'
11*%%*/
12