solidity/test/libsolidity/syntaxTests/inheritance/override/internal_external.sol
2019-10-30 17:31:33 +01:00

7 lines
202 B
Solidity

contract A {
function f(uint[] calldata) external pure {}
function f(uint[] memory) internal pure {}
}
// ----
// DeclarationError: (17-61): Function with same name and arguments defined twice.