mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
351 B
Solidity
23 lines
351 B
Solidity
contract InvalidTest {
|
|
|
|
function() internal storedFn;
|
|
|
|
bool flag;
|
|
|
|
constructor() {
|
|
function() internal invalid;
|
|
storedFn = invalid;
|
|
}
|
|
function f() public returns (uint) {
|
|
if (flag) return 2;
|
|
flag = true;
|
|
storedFn();
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// compileToEwasm: also
|
|
// ----
|
|
// f() -> FAILURE
|
|
// f() -> FAILURE
|