Added some tests.

This commit is contained in:
chriseth
2018-10-24 14:29:33 +02:00
parent 19be6cd818
commit a9a414bd0f
4 changed files with 44 additions and 0 deletions
@@ -0,0 +1,10 @@
contract C {
function f() public pure {
assembly {
let x := 0100
}
}
}
// ----
// ParserError: (72-73): Literal, identifier or instruction expected.
// ParserError: (72-73): Expected primary expression.