mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-01 08:19:32 +03:00
13 lines
168 B
Plaintext
13 lines
168 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition baz() -> u8 {
|
|
let a: (u8, u16) = (1u8, 2u16);
|
|
return 1u8 + 1u8;
|
|
}
|
|
}
|
|
|