solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/323_mapping_with_fixed_literal.sol

9 lines
207 B
Solidity
Raw Normal View History

contract test {
mapping(ufixed8x1 => string) fixedString;
function f() public {
fixedString[0.5] = "Half";
}
}
2019-08-16 13:53:10 +00:00
// ----
// UnimplementedFeatureError: Not yet implemented - FixedPointType.