leo/compiler/tests/boolean/not_u32.leo

3 lines
62 B
Plaintext
Raw Normal View History

function main() -> bool {
2020-08-17 03:20:47 +03:00
console.assert(!1u32 == 0u32);
}