solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/343_integer_and_fixed_interaction.sol

10 lines
285 B
Solidity
Raw Normal View History

contract test {
function f() public {
ufixed a = uint64(1) + ufixed(2);
}
}
// ----
2019-08-16 13:53:10 +00:00
// UnimplementedFeatureError: Not yet implemented - FixedPointType.
// Warning: (50-58): Unused local variable.
// Warning: (20-89): Function state mutability can be restricted to pure