solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/304_fixed_type_rational_int_conversion.sol
2019-08-16 17:14:49 +02:00

11 lines
257 B
Solidity

contract test {
function f() public {
fixed c = 3;
ufixed d = 4;
c; d;
}
}
// ----
// UnimplementedFeatureError: Not yet implemented - FixedPointType.
// Warning: (20-104): Function state mutability can be restricted to pure