solidity/test/libsolidity/syntaxTests/inheritance/override/override_multiple_fail2.sol
2019-08-26 17:34:21 +02: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 ','