mirror of https://github.com/ConsenSys/mythril
parent
db58d1593e
commit
125336ca11
@ -0,0 +1,16 @@ |
|||||||
|
contract InvalidOpcodes { |
||||||
|
|
||||||
|
function assert1() { |
||||||
|
uint256 i = 1; |
||||||
|
assert(i == 0); |
||||||
|
} |
||||||
|
|
||||||
|
function assert2() { |
||||||
|
uint256 i = 1; |
||||||
|
assert(i > 0); |
||||||
|
} |
||||||
|
|
||||||
|
function assert3(uint input) { |
||||||
|
assert(input != 23); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue