skia2/resources/sksl/errors/UnscopedVariableInDoWhile.sksl

8 lines
117 B
Plaintext
Raw Normal View History

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