1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-05-07 04:42:15 +00:00
assemblyscript/tests/parser/nonNullAssertion.ts.fixture.ts

9 lines
84 B
TypeScript
Raw Normal View History

2019-01-30 09:56:13 +01:00
foo!;
foo!!;
foo!.bar;
foo.bar!;
foo![0];
foo[0]!;
foo![0]!.bar!;
foo!![0]!!.bar!!;