solidity/test/libsolidity/semanticTests/constructor/store_internal_unused_function_in_constructor.sol
2020-07-07 12:16:18 +02:00

19 lines
275 B
Solidity

contract C {
function() returns (uint256) internal x;
constructor() {
x = unused;
}
function unused() internal returns (uint256) {
return 7;
}
function t() public returns (uint256) {
return x();
}
}
// ----
// t() -> 7