mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-19 16:21:45 +03:00
12 lines
136 B
Plaintext
12 lines
136 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
*/
|
|
|
|
function foo(a: [u8; 1]) {}
|
|
|
|
function main() {
|
|
const a: [u8; 1] = [1; 1];
|
|
foo(a);
|
|
}
|