solidity/test/libsolidity/syntaxTests/inheritance/override/override_multiple_fail2.sol
2022-04-01 23:41:18 -05:00

9 lines
207 B
Solidity

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