mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
372 B
21 lines
372 B
import "./A.sol";
|
|
|
|
interface MyInterfaceX {
|
|
function count() external view returns (uint256);
|
|
|
|
function increment() external;
|
|
}
|
|
|
|
contract C is A, MyInterfaceX {
|
|
function c_main() public pure {
|
|
a_main();
|
|
}
|
|
|
|
function count() external view override returns (uint256){
|
|
return 1;
|
|
}
|
|
|
|
function increment() external override {
|
|
|
|
}
|
|
}
|
|
|