fix asg tests

This commit is contained in:
gluax 2021-07-01 14:10:04 -07:00
parent a0d9047faf
commit f4d39e58b7
23 changed files with 23 additions and 23 deletions

View File

@ -1,3 +1,3 @@
function main(a: address, b: address, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: field, b: field, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: group, b: group, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i128, b: i128, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i128, b: i128, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i16, b: i16, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i16, b: i16, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i32, b: i32, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i32, b: i32, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i64, b: i64, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i64, b: i64, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i8, b: i8, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: i8, b: i8, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u128, b: u128, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u128, b: u128, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u16, b: u16, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u16, b: u16, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u32, b: u32, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u32, b: u32, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u64, b: u64, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u64, b: u64, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u8, b: u8, c: bool) {
console.assert(a == b == c);
console.assert((a == b) == c);
}

View File

@ -1,3 +1,3 @@
function main(a: u8, b: u8, c: bool) {
console.assert(a != b == c);
console.assert((a != b) == c);
}