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