solidity/test/libsolidity/syntaxTests/parsing/declaring_fixed_and_ufixed_variables.sol
2021-10-06 13:56:24 +02:00

10 lines
154 B
Solidity

contract A {
fixed40x40 storeMe;
function f(ufixed, fixed32x32) public pure {
ufixed8x8 a;
fixed b;
a; b;
}
}
// ----