solidity/test/libsolidity/syntaxTests/inheritance/override/override_multiple_fail4.sol

9 lines
171 B
Solidity
Raw Normal View History

2019-08-13 11:00:46 +00:00
contract A {
function foo() internal returns (uint256);
}
contract X {
int public override() testvar;
}
// ----
// ParserError: (93-94): Expected identifier but got ')'