Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
efde90d973739d35023ce85edc9a6674b6c546bf
/
.
/
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
;
};