solidity/test/libsolidity/syntaxTests/abiEncoder/abi_encodeCall_free_func.sol

8 lines
208 B
Solidity
Raw Normal View History

2022-07-17 05:00:12 +00:00
function g(uint) {}
function f() {
abi.encodeCall(g, (1));
}
// ----
// TypeError 3509: (55-56): Expected regular external function type, or external view on public function. Provided internal function.