5f7dee4194
#KT-29099 Fixed
10 lines
96 B
Kotlin
Vendored
10 lines
96 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class C {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun test() {
|
|
val c = C()
|
|
c.foo()<caret>
|
|
} |