solidity/test/libsolidity/syntaxTests/types/var_empty_decl_3.sol

8 lines
149 B
Solidity

contract C {
function f() public pure {
var (d, e,);
}
}
// ----
// TypeError 4626: (52-63): Use of the "var" keyword is disallowed.