2019-08-13 11:00:46 +00:00
|
|
|
contract A {
|
|
|
|
function foo() internal returns (uint256);
|
|
|
|
}
|
|
|
|
contract X {
|
|
|
|
function test() internal override(,) returns (uint256);
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// ParserError 2314: (107-108): Expected identifier but got ','
|