1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-05 17:26:31 +03:00
leo/tests/parser/unreachable/postfix_pass.leo

56 lines
535 B
Plaintext

/*
namespace: ParseStatement
expectation: Pass
*/
// These ones do not hit the unreachable as they are treated as valid idents rather than postfix.
let x = aimport;
let x = a_;
let x = aas;
let x = aconsole;
let x = aconst;
let x = alet;
let x = afor;
let x = aif;
let x = aelse;
let x = ai8;
let x = ai16;
let x = ai32;
let x = ai64;
let x = ai128;
let x = au8;
let x = au16;
let x = au32;
let x = au64;
let x = au128;
let x = areturn;
let x = aself;
let x = aSelf;
let x = atrue;
let x = afalse;
let x = a0;