Adds parsing sub-directory in syntaxTests and moves two example tests from SolidityParser.cpp to test contracts.

This commit is contained in:
Daniel Kirchner
2018-04-03 19:54:46 +02:00
parent 6f9644add1
commit 87ad337ae0
3 changed files with 9 additions and 20 deletions
@@ -0,0 +1,5 @@
contract test {
uint256 ;
}
// ----
// ParserError: Expected identifier, got 'Semicolon'
@@ -0,0 +1,4 @@
contract test {
uint256 stateVariable1;
}
// ----