Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / tests / sksl / errors / BadFieldAccess.glsl
1 ### Compilation failed:
2
3 error: 3: type 'S' does not have a field named 'missing'
4 void not_a_field()    { S s; s.missing = 123; }
5                              ^^^^^^^^^
6 error: 4: not a function
7 void not_a_function() { S s; s.f(); }
8                              ^^^^^
9 error: 5: type mismatch: '=' cannot operate on 'float', 'bool3'
10 void not_a_bvec()     { S s; s.f = bool3(true); }
11                              ^^^^^^^^^^^^^^^^^
12 error: 6: invalid swizzle component 'm'
13 void not_a_struct()   { S s; s.f.missing; }
14                                  ^
15 error: 7: expected array, but found 'float'
16 void not_an_array()   { S s; s.f[0]; }
17                              ^^^
18 5 errors