solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/invalid_number.sol
2022-04-01 23:41:18 -05:00

10 lines
173 B
Solidity

contract C {
function f() public pure {
assembly {
let x := 0100
}
}
}
// ----
// ParserError 1465: (72-73='0'): Illegal token: Octal numbers not allowed.