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

3 lines
67 B
Plaintext

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