aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_fixed.sol
blob: 4910ee829229e9ad0e665da1482d4f029057ee38 (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C {
  function f() public pure {
    fixed f1 = 3.14_15;
    fixed f2 = 3_1.4_15;

    f1; f2;
  }
}
// ----