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