solidity/test/libsolidity/syntaxTests/types/var_empty_decl_2.sol
2020-07-20 17:22:04 +02:00

10 lines
201 B
Solidity

contract C {
function f() public pure {
var (b, c);
b.WeMustNotReachHere();
c.FailsToLookupToo();
}
}
// ----
// ParserError 6933: (52-55): Expected primary expression.