solidity/test/libsolidity/syntaxTests/underscore/as_function.sol
2020-11-03 15:22:57 +00:00

13 lines
152 B
Solidity

contract C {
function _() public pure {
}
function g() public pure {
_();
}
function h() public pure {
_;
}
}