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

22 lines
282 B
Solidity

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