solidity/test/libsolidity/semanticTests/uninitializedFunctionPointer/invalidInConstructor.sol

24 lines
327 B
Solidity
Raw Normal View History

contract C {
function() internal storedFn;
bool flag;
constructor() public {
if (!flag) {
flag = true;
function() internal invalid;
storedFn = invalid;
invalid();
}
}
function f() public pure {}
}
contract Test {
function f() public {
new C();
}
}
// ----
// f() -> FAILURE