Sign in
skia
/
skia
/
8fdce7ab9a5f3fd707b9993b1905601f35323b47
/
.
/
resources
/
sksl
/
errors
/
UnscopedVariableInDoWhile.sksl
blob: 14cff35e67cab94e8d79a7394d5be3053f46651f [
file
] [
log
] [
blame
]
void
main
()
{
do
int
foo
=
1
,
bar
=
foo
;
while
(
false
);
}
/*%%*
variable 'foo' must be created in a scope
*%%*/