mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
34 lines
376 B
Plaintext
34 lines
376 B
Plaintext
/*
|
|
namespace: ParseStatement
|
|
expectation: Pass
|
|
*/
|
|
|
|
let x: u8 = expr;
|
|
|
|
let x: u16 = x+y;
|
|
|
|
let x: u8 = x();
|
|
|
|
|
|
const x: i8 = expr;
|
|
|
|
const x: i16 = x+y;
|
|
|
|
const x: i8 = x();
|
|
|
|
|
|
let x: u32 = expr;
|
|
|
|
let x: u32 = x+y;
|
|
|
|
let x: u32 = x();
|
|
|
|
|
|
const x: u32 = expr;
|
|
|
|
const x: u32 = x+y;
|
|
|
|
const x: u32 = x();
|
|
|
|
let x: address = aleo15u4r0gzjtqzepkgurgn7p3u5kkhs9p74rx6aun3uh2s5std6759svgmg53;
|