aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/inlineAssembly/invalid/invalid_number.sol
blob: 99a906deb8378d067a56eaa777b578caf94c9677 (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.