mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
208 B
Solidity
8 lines
208 B
Solidity
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.
|