solidity/test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_fixed.sol

10 lines
118 B
Solidity

contract C {
function f() public pure {
fixed f1 = 3.14_15;
fixed f2 = 3_1.4_15;
f1; f2;
}
}
// ----