Implement non-null assertions (#443)

This commit is contained in:
Daniel Wirtz
2019-01-30 09:56:13 +01:00
committed by GitHub
parent 2fe228ff00
commit d843772314
11 changed files with 413 additions and 32 deletions

View File

@ -0,0 +1,8 @@
foo!;
foo!!;
foo!.bar;
foo.bar!;
foo![0];
foo[0]!;
foo![0]!.bar!;
foo!![0]!!.bar!!;