solidity/test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_fixed.sol
2019-08-16 17:14:49 +02:00

11 lines
186 B
Solidity

contract C {
function f() public pure {
fixed f1 = 3.14_15;
fixed f2 = 3_1.4_15;
f1; f2;
}
}
// ----
// UnimplementedFeatureError: Not yet implemented - FixedPointType.