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

11 lines
261 B
Solidity

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