Files
kotlin-fork/compiler/testData/codegen/notNullAssertions/noAssertionsForKotlin.kt
T
Alexander Udalov bf779b4ca5 Generate not-null assertions only for descriptors coming from Java
Introduce BindingContext.IS_DECLARED_IN_JAVA, store that info in
JavaDescriptorResolver
2012-10-08 19:03:29 +04:00

14 lines
184 B
Kotlin

class A {
val x: Int = 42
fun foo(): String = ""
class object {
val y: Any? = 239
fun bar(): String = ""
}
}
fun baz(): String = ""