solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/314_fixed_type_zero_handling.sol

10 lines
262 B
Solidity
Raw Normal View History

contract test {
function f() public {
fixed16x2 a = 0; a;
ufixed32x1 b = 0; b;
}
}
// ----
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