mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
258 B
Solidity
12 lines
258 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; }
|
|
}
|
|
// ----
|