Files
kotlin-fork/compiler/testData/codegen/notNullAssertions/noAssertionsForKotlinMain.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

8 lines
114 B
Kotlin
Vendored

fun bar() {
val x = A().x
val foo = A().foo()
val y = A.y
val bar = A.bar()
val baz = baz()
}