solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/303_fixed_type_int_conversion.sol

13 lines
300 B
Solidity
Raw Normal View History

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