[NI] Refine nullability for CST of types with undefined nullability

This commit is contained in:
Mikhail Zarechenskiy
2017-12-01 18:11:09 +03:00
parent b9d390449c
commit 1d736f59b6
10 changed files with 28 additions and 25 deletions
@@ -1,7 +1,7 @@
package
public fun foobar(/*0*/ a: A, /*1*/ b: B): In<kotlin.Nothing>?
public fun </*0*/ T> select(/*0*/ x: T, /*1*/ y: T): T?
public fun foobar(/*0*/ a: A, /*1*/ b: B): In<kotlin.Nothing>
public fun </*0*/ T> select(/*0*/ x: T, /*1*/ y: T): T
public final class A : In<A> {
public constructor A()