leo/compiler/tests/integers/u32/ne.leo
2020-08-14 00:25:39 -07:00

3 lines
69 B
Plaintext

function main(a: u32, b: u32, c: bool) {
assert_eq!(a != b, c);
}