d74c12323f
#KT-27987 Fixed
11 lines
161 B
Kotlin
Vendored
11 lines
161 B
Kotlin
Vendored
// ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
open class Parent {
|
|
open fun foo(x: String) {}
|
|
}
|
|
|
|
open class KotlinClass : Parent() {
|
|
override fun foo(x: String) {}
|
|
}
|