solidity/test/libsolidity/syntaxTests/memberLookup/internal_function_type.sol
2020-07-07 12:16:18 +02:00

8 lines
148 B
Solidity

contract C {
function () internal returns (uint) x;
constructor() {
C.x = g;
}
function g() public pure returns (uint) {}
}