mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
250 B
Solidity
11 lines
250 B
Solidity
|
library L {
|
||
|
function g(function() internal returns (uint) _t) internal returns (uint) { return _t(); }
|
||
|
}
|
||
|
contract C {
|
||
|
using L for *;
|
||
|
function f() public returns (uint) {
|
||
|
return t.g();
|
||
|
}
|
||
|
function t() public pure returns (uint) { return 7; }
|
||
|
}
|