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

7 lines
131 B
Solidity
Raw Normal View History

contract test {
mapping(ufixed8x1 => string) fixedString;
function f() public {
fixedString[0.5] = "Half";
}
}