Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
errors
/
StructTooDeeplyNested.sksl
blob: 65e1369216c5ccacbc61a1404e8d9425778bd1db [
file
] [
log
] [
blame
]
struct
S1
{
int
x
;
};
struct
S2
{
S1 x
;
};
struct
S3
{
S2 x
;
};
struct
S4
{
S3 x
;
};
struct
S5
{
S4 x
;
};
struct
S6
{
S5 x
;
};
struct
S7
{
S6 x
;
};
struct
S8
{
S7 x
;
};
struct
too_deep
{
S8 x
;
};