2019-11-04 13:33:33 +00:00
|
|
|
abstract contract A {
|
2019-09-16 12:33:43 +00:00
|
|
|
int public testvar;
|
2019-11-05 17:25:34 +00:00
|
|
|
function test() internal virtual returns (uint256);
|
|
|
|
function test2() internal virtual returns (uint256);
|
2019-09-16 12:33:43 +00:00
|
|
|
}
|
2019-12-02 20:39:53 +00:00
|
|
|
contract X is A {
|
2019-08-13 11:00:46 +00:00
|
|
|
int public override testvar;
|
2019-12-02 20:39:53 +00:00
|
|
|
function test() internal override returns (uint256) {}
|
|
|
|
function test2() internal override(A) returns (uint256) {}
|
2019-08-13 11:00:46 +00:00
|
|
|
}
|
|
|
|
// ----
|
2019-11-27 14:11:56 +00:00
|
|
|
// DeclarationError: (171-198): Identifier already declared.
|