mirror of https://github.com/crytic/slither
parent
2e1b50862f
commit
df896e80f2
@ -0,0 +1 @@ |
||||
contract A {} |
@ -0,0 +1,9 @@ |
||||
pragma solidity 0.5.12; |
||||
|
||||
import {A} from "./import.sol"; |
||||
|
||||
contract Z is A { |
||||
function test() public pure returns (uint) { |
||||
return 1; |
||||
} |
||||
} |
@ -0,0 +1,9 @@ |
||||
pragma solidity 0.5.12; |
||||
|
||||
import {A as X, A as Y} from "./import.sol"; |
||||
|
||||
contract Z is X { |
||||
function test() public pure returns (uint) { |
||||
return 1; |
||||
} |
||||
} |
Loading…
Reference in new issue