blob: b44d09e320dd786296efc517fe2705666078a8b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
contract C {
function f() public pure {
assembly {
let x := 0100
}
}
}
// ----
// ParserError: (72-73): Literal, identifier or instruction expected.
// ParserError: (72-73): Octal numbers not allowed.
|