Files
kotlin-fork/nj2k/testData/newJ2k/issues/kt-24677.kt
T
Ilya Kirillov f9fac0acf5 New J2K: do not save import statements in files as we print fqNames for calls
This may cause conflicts on shortening fq references post-processing step
2019-09-24 17:13:11 +03:00

11 lines
207 B
Kotlin
Vendored

internal interface FooInterface {
fun foo(): ArrayList<out Foo.SomeClass?>?
}
class Foo : FooInterface {
override fun foo(): ArrayList<SomeClass?>? {
return null
}
class SomeClass
}