solidity/test/libsolidity/syntaxTests/inheritance/override/override_multiple_fail2.sol
2020-01-08 16:12:06 +01:00

9 lines
198 B
Solidity

contract A {
function foo() internal returns (uint256);
}
contract X {
function test() internal override(,) returns (uint256);
}
// ----
// ParserError: (107-108): Expected identifier but got ","