xref: /aosp_15_r20/external/skia/tests/sksl/inliner/Ossfuzz66207.glsl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1
2out vec4 sk_FragColor;
3uniform vec4 colorGreen;
4struct S {
5    float x;
6    int y;
7};
8struct Nested {
9    S a;
10};
11vec4 main() {
12    return colorGreen;
13}
14