2018-10-24 12:29:33 +00:00
|
|
|
contract C {
|
|
|
|
function f() public pure {
|
|
|
|
assembly {
|
|
|
|
let x := 0100
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
|
|
|
// ParserError: (72-73): Literal, identifier or instruction expected.
|
2018-11-23 15:49:01 +00:00
|
|
|
// ParserError: (72-73): Octal numbers not allowed.
|