solidity/test/libsolidity/syntaxTests/parsing/declaring_fixed_and_ufixed_variables.sol
2021-08-04 15:27:44 -05:00

10 lines
156 B
Solidity

contract A {
fixed128x4 storeMe;
function f(ufixed, fixed128x3) public pure {
ufixed128x2 a;
fixed b;
a; b;
}
}
// ----