leo/compiler/tests/boolean/not_u32.leo

3 lines
56 B
Plaintext

function main() -> bool {
assert_eq!(!1u32, 0u32);
}