Files
Dmitrii Gridin 095989b6fc [LL FIR] ger rid of AbstractLowLevelApiLastModuleFirstFileTest
Now this class is redundant and all tests migrated to the base class

^KT-64805
2024-01-10 22:07:03 +00:00

13 lines
248 B
Kotlin
Vendored

// MAIN_FILE_NAME: I
// DECLARATION_TYPE: org.jetbrains.kotlin.psi.KtClass
class I(private val p: A) : A by p
interface A {
var Int.zoo: Unit
fun foo()
fun Int.smth(): Short
val foo: Int
var bar: Long
val Int.doo: String
}