solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/304_fixed_type_rational_int_conversion.sol

11 lines
262 B
Solidity
Raw Normal View History

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