Sort tests.

This commit is contained in:
chriseth
2020-03-19 14:42:25 +01:00
parent 8834b1acaf
commit f25157a5f8
295 changed files with 0 additions and 0 deletions
@@ -0,0 +1,29 @@
contract C {
enum X {A, B}
function test_eq() public returns (bool) {
X garbled;
assembly {
garbled := 5
}
return garbled == garbled;
}
function test_eq_ok() public returns (bool) {
X garbled = X.A;
return garbled == garbled;
}
function test_neq() public returns (bool) {
X garbled;
assembly {
garbled := 5
}
return garbled != garbled;
}
}
// ----
// test_eq_ok() -> 1
// test_eq() -> FAILURE # both should throw #
// test_neq() -> FAILURE