10 lines
129 B
Text
10 lines
129 B
Text
const u32 N = 1;
|
|
|
|
def foo(bool[N] arr) -> bool {
|
|
return true;
|
|
}
|
|
|
|
def main(bool[N] arr) {
|
|
assert(foo(arr));
|
|
return;
|
|
}
|