Infrastructure for extracting syntax tests in separate test files.

This commit is contained in:
Daniel Kirchner
2018-03-13 11:20:11 +01:00
parent f2614be95f
commit 49eaf7c3fd
15 changed files with 387 additions and 55 deletions
@@ -0,0 +1,11 @@
pragma experimental "v0.5.0";
contract test {
function f() pure public {
uint256 x;
if (true) { uint256 x; }
}
}
// ----
// Warning: This declaration shadows an existing declaration.
// Warning: Unused local variable.
// Warning: Unused local variable.