Static Analyzer for Solidity
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.
 
 
 
 
slither/tests/e2e/printers/test_data/test_contract_names/C.sol

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 {
}
}