mirror of https://github.com/crytic/slither
commit
66e2c1b7c6
@ -0,0 +1,3 @@ |
|||||||
|
contract A{ |
||||||
|
|
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
import "./a.sol"; |
||||||
|
|
||||||
|
contract B is A{ |
||||||
|
|
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
#!/usr/bin/env bash |
||||||
|
|
||||||
|
### Test slither-prop |
||||||
|
|
||||||
|
cd examples/flat || exit 1 |
||||||
|
|
||||||
|
if ! slither-flat b.sol; then |
||||||
|
echo "slither-flat failed" |
||||||
|
exit 1 |
||||||
|
fi |
||||||
|
|
||||||
|
exit 0 |
Loading…
Reference in new issue