mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
224 B
Solidity
15 lines
224 B
Solidity
library L {
|
|
function value(function()internal a, uint256 b) internal {}
|
|
}
|
|
contract C {
|
|
using L for function()internal;
|
|
|
|
function f() public {
|
|
function()internal x;
|
|
x.value(42);
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|