2021-03-30 01:45:10 +03:00
|
|
|
/*
|
2021-04-07 20:01:24 +03:00
|
|
|
namespace: ParseStatement
|
2021-03-30 01:45:10 +03:00
|
|
|
expectation: Pass
|
|
|
|
*/
|
|
|
|
|
|
|
|
let x = expr;
|
|
|
|
|
|
|
|
let x = x+y;
|
|
|
|
|
|
|
|
let x = x();
|
|
|
|
|
|
|
|
|
|
|
|
const x = expr;
|
|
|
|
|
|
|
|
const x = x+y;
|
|
|
|
|
|
|
|
const x = 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, y) = expr;
|
|
|
|
|
|
|
|
let (x, y) = x+y;
|
|
|
|
|
|
|
|
let (x, y) = x();
|
|
|
|
|
|
|
|
|
|
|
|
const (x, y) = expr;
|
|
|
|
|
|
|
|
const (x, y) = x+y;
|
|
|
|
|
|
|
|
const (x, y) = x();
|
|
|
|
|
|
|
|
|
|
|
|
let (x, y): u32 = expr;
|
|
|
|
|
|
|
|
let (x, y): u32 = x+y;
|
|
|
|
|
|
|
|
let (x, y): u32 = x();
|
|
|
|
|
|
|
|
|
|
|
|
const (x, y): u32 = expr;
|
|
|
|
|
|
|
|
const (x, y): u32 = x+y;
|
|
|
|
|
|
|
|
const (x, y): u32 = x();
|
|
|
|
|
2022-02-16 22:33:52 +03:00
|
|
|
let x: address = aleo15u4r0gzjtqzepkgurgn7p3u5kkhs9p74rx6aun3uh2s5std6759svgmg53;
|