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

10 lines
257 B
Solidity

contract test {
function f() public {
fixed16x2 a = 0; a;
ufixed32x1 b = 0; b;
}
}
// ----
// UnimplementedFeatureError: Not yet implemented - FixedPointType.
// Warning: (20-104): Function state mutability can be restricted to pure