leo/compiler/tests/integers/u32/ne.leo

3 lines
69 B
Plaintext
Raw Normal View History

2020-08-14 10:25:39 +03:00
function main(a: u32, b: u32, c: bool) {
assert_eq!(a != b, c);
}