Command line tests and minor touch ups

This commit is contained in:
Nikola Matic
2022-09-12 11:13:49 +02:00
parent ddf0d784ac
commit 314a1cc92f
15 changed files with 88 additions and 47 deletions
@@ -6,8 +6,8 @@ contract C {
constructor() payable {
assembly ("memory-safe") {
let a := 0
revert(0, a)
// Without the cleanup sequence this will not be simplified to ``revert(a, a)``.
revert(0, a)
}
}
}