solidity/test/libsolidity/syntaxTests/types/var_decl_val_mismatch.sol
2020-04-14 10:59:28 +02:00

16 lines
262 B
Solidity

contract n
{
fallback() external
{
// Used to cause a segfault
var (x,y) = (1);
var (z) = ();
assembly {
mstore(y, z)
}
}
}
// ----
// TypeError: (69-84): Different number of components on the left hand side (2) than on the right hand side (1).