Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
skia
/
resources
/
sksl
/
errors
/
StructTooDeeplyNested.sksl
blob: 72221b202e616492b04900074a359dace74a2d73 [
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
;
};
/*%%*
struct 'too_deep' is too deeply nested
*%%*/