unplugged-system/external/skia/resources/sksl/errors/UnscopedVariableInDoWhile.sksl

10 lines
129 B
Plaintext

void main() {
do
int foo = 1, bar = foo;
while (false);
}
/*%%*
variable 'foo' must be created in a scope
*%%*/