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

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