solidity/test/cmdlineTests/error_codes/input.sol
2020-06-10 13:27:25 +02:00

9 lines
105 B
Solidity

// SPDX-License-Identifier: GPL-3.0
contract C {
function f() {
2=0;
""[2];
}
}