Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / tests / sksl / errors / ArrayUnspecifiedDimensions.glsl
1 ### Compilation failed:
2
3 error: 1: expected array dimension
4 int arrUnsized[];
5               ^^
6 error: 2: array size must be an integer
7 int arrFloat[1.];
8              ^^
9 error: 3: array size must be an integer
10 int arrBool[true];
11             ^^^^
12 error: 5: missing index in '[]'
13 int unsized_in_expression() { return int[](0)[0]; }
14                                         ^^
15 4 errors