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