Emit not-null assertions for enhanced types

This commit is contained in:
Denis Zharkov
2015-07-14 14:21:20 +03:00
parent e23c7f457b
commit d19cb747be
11 changed files with 231 additions and 33 deletions
@@ -45,10 +45,10 @@ fun checkAssertions(illegalStateExpected: Boolean) {
check("plus") { A() + A() }
// field
// check("NULL") { A().NULL }
check("NULL") { A().NULL }
// static field
// check("STATIC_NULL") { A.STATIC_NULL }
check("STATIC_NULL") { A.STATIC_NULL }
// postfix expression
// TODO: