aboutsummaryrefslogtreecommitdiff
path: root/resources/sksl/errors/UnscopedVariableInFor.rts
blob: 59904aa415841528a80b91f4c0ca262d5120e7ad (plain)
1
2
3
4
5
6
7
void func() {
    for (int x=0; x<10; ++x) float s = sqrt(4);
}

/*%%*
variable 's' must be created in a scope
*%%*/