Files
kotlin-fork/compiler/fir/plugins/allopen-plugin/testData/simple.txt
T
2020-05-08 15:09:56 +03:00

20 lines
387 B
Plaintext
Vendored

FILE: simple.kt
public open class A : R|kotlin/Any| {
public constructor(): R|A| {
super<R|kotlin/Any|>()
}
public open fun foo(): R|kotlin/Unit| {
}
}
public open class B : R|A| {
public constructor(): R|B| {
super<R|A|>()
}
public open override fun foo(): R|kotlin/Unit| {
}
}