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

11 lines
186 B
Solidity
Raw Normal View History

contract C {
function f() public pure {
fixed f1 = 3.14_15;
fixed f2 = 3_1.4_15;
f1; f2;
}
}
// ----
2019-08-16 13:53:10 +00:00
// UnimplementedFeatureError: Not yet implemented - FixedPointType.