solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/invalid_number.sol

11 lines
219 B
Solidity

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.