solidity/test/libsolidity/syntaxTests/parsing/declaring_fixed_and_ufixed_variables.sol

15 lines
598 B
Solidity
Raw Normal View History

2018-05-17 07:04:39 +00:00
contract A {
fixed40x40 storeMe;
function f(ufixed x, fixed32x32 y) public {
2018-05-17 07:04:39 +00:00
ufixed8x8 a;
fixed b;
}
}
// ----
2019-08-16 13:53:10 +00:00
// UnimplementedFeatureError: Not yet implemented - FixedPointType.
2018-05-17 07:04:39 +00:00
// Warning: (52-60): Unused function parameter. Remove or comment out the variable name to silence this warning.
// Warning: (62-74): Unused function parameter. Remove or comment out the variable name to silence this warning.
// Warning: (93-104): Unused local variable.
// Warning: (114-121): Unused local variable.
// Warning: (41-128): Function state mutability can be restricted to pure