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

13 lines
300 B
Solidity

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