Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
cb15b7cf77a646e15890ac7dd9c91de29f2ed96a
/
.
/
resources
/
sksl
/
errors
/
RedeclareVariable.sksl
blob: 67ba3a82daa4db36396855a652be950c779e3b80 [
file
] [
log
] [
blame
]
John Stiles
2630ea3
2020-12-04 10:51:21 -0500
[
diff
] [
blame
]
1
struct
S
{
int
i
;
};
2
3
int
x
;
4
int
x
;
5
float4x4 x
;
6
bool2 x
[
2
];
7
S x
;
8
9
void
main
()
{
10
float2 y
;
11
float2 y
;
12
int
y
;
13
float
y
[
4
];
14
S y
;
15
}