mirror of https://github.com/crytic/slither
parent
94b42ee96f
commit
c08cbee3ec
@ -0,0 +1,5 @@ |
|||||||
|
pragma solidity ^0.8.0; |
||||||
|
|
||||||
|
abstract contract ExplicitAbstract{ |
||||||
|
function f() virtual public; |
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
pragma solidity ^0.5.0; |
||||||
|
|
||||||
|
contract ImplicitAbstract{ |
||||||
|
function f() public; |
||||||
|
} |
Loading…
Reference in new issue