solidity/test/libsolidity/semanticTests/functionTypes/uninitialized_internal_storage_function_call.sol

12 lines
156 B
Solidity
Raw Normal View History

contract Test {
function() internal x;
function f() public returns (uint256 r) {
x();
return 2;
}
}
// ----
// f() -> FAILURE