blob: 1814cb475094009523998d8ad5cf7691e40ca159 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
pragma experimental "v0.5.0";
contract test {
function f() pure public {
for (uint x = 0; x < 10; x ++){
x = 2;
}
x = 4;
}
}
// ----
// DeclarationError: (154-155): Undeclared identifier.
|