leo/tests/parser/statement/console.leo
2022-08-17 15:27:33 -07:00

13 lines
175 B
Plaintext

/*
namespace: ParseStatement
expectation: Pass
*/
console.assert_eq(x, y);
console.assert_eq(Foo { x: x }, Foo { x: y });
console.assert_neq(x, y);
console.assert(false);