mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-25 03:04:13 +03:00
fix asg tests
This commit is contained in:
parent
a0d9047faf
commit
f4d39e58b7
@ -1,3 +1,3 @@
|
|||||||
function main(a: address, b: address, c: bool) {
|
function main(a: address, b: address, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: field, b: field, c: bool) {
|
function main(a: field, b: field, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: group, b: group, c: bool) {
|
function main(a: group, b: group, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i128, b: i128, c: bool) {
|
function main(a: i128, b: i128, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i128, b: i128, c: bool) {
|
function main(a: i128, b: i128, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i16, b: i16, c: bool) {
|
function main(a: i16, b: i16, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i16, b: i16, c: bool) {
|
function main(a: i16, b: i16, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i32, b: i32, c: bool) {
|
function main(a: i32, b: i32, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i32, b: i32, c: bool) {
|
function main(a: i32, b: i32, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i64, b: i64, c: bool) {
|
function main(a: i64, b: i64, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i64, b: i64, c: bool) {
|
function main(a: i64, b: i64, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i8, b: i8, c: bool) {
|
function main(a: i8, b: i8, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: i8, b: i8, c: bool) {
|
function main(a: i8, b: i8, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u128, b: u128, c: bool) {
|
function main(a: u128, b: u128, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u128, b: u128, c: bool) {
|
function main(a: u128, b: u128, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u16, b: u16, c: bool) {
|
function main(a: u16, b: u16, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u16, b: u16, c: bool) {
|
function main(a: u16, b: u16, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u32, b: u32, c: bool) {
|
function main(a: u32, b: u32, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u32, b: u32, c: bool) {
|
function main(a: u32, b: u32, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u64, b: u64, c: bool) {
|
function main(a: u64, b: u64, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u64, b: u64, c: bool) {
|
function main(a: u64, b: u64, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u8, b: u8, c: bool) {
|
function main(a: u8, b: u8, c: bool) {
|
||||||
console.assert(a == b == c);
|
console.assert((a == b) == c);
|
||||||
}
|
}
|
@ -1,3 +1,3 @@
|
|||||||
function main(a: u8, b: u8, c: bool) {
|
function main(a: u8, b: u8, c: bool) {
|
||||||
console.assert(a != b == c);
|
console.assert((a != b) == c);
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user