mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
26 lines
658 B
Solidity
26 lines
658 B
Solidity
contract C {
|
|
function foo() internal returns (uint) {
|
|
return 42;
|
|
}
|
|
|
|
function get_ptr(function() internal returns (uint) ptr) internal returns(function() internal returns (uint)) {
|
|
return ptr;
|
|
}
|
|
|
|
function associated() public returns (uint) {
|
|
// This expression directly references function definition
|
|
return (foo)();
|
|
}
|
|
|
|
function unassociated() public returns (uint) {
|
|
// This expression is not associated with a specific function definition
|
|
return (get_ptr(foo))();
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// compileToEwasm: also
|
|
// ----
|
|
// associated() -> 42
|
|
// unassociated() -> 42
|