18 lines
297 B
Kotlin
18 lines
297 B
Kotlin
package p2
|
|
|
|
trait KotlinTrait
|
|
|
|
open class KotlinInheritor1 : KotlinTrait
|
|
|
|
class KotlinInheritor2(s: String) : KotlinInheritor1()
|
|
|
|
abstract class KotlinInheritor3 : KotlinTrait
|
|
|
|
class C {
|
|
private class PrivateInheritor : KotlinTrait
|
|
}
|
|
|
|
object ObjectInheritor : KotlinTrait
|
|
|
|
// ALLOW_AST_ACCESS
|