Extract scoping tests.

This commit is contained in:
chriseth
2018-03-16 00:47:32 +01:00
parent 6589555790
commit c9db105ad7
17 changed files with 130 additions and 223 deletions
@@ -0,0 +1,7 @@
pragma experimental "v0.5.0";
contract test {
function f() pure public {
for (uint x = 0; x < 10; x ++)
x = 2;
}
}