60b0236101
Fixed KT-7539 fq name inserted when completing nested traits name #KT-7539
10 lines
118 B
Kotlin
Vendored
10 lines
118 B
Kotlin
Vendored
class C {
|
|
fun foo() {
|
|
when {
|
|
1 -> foo()
|
|
else { doIt() }
|
|
}
|
|
|
|
fun bar(){}
|
|
}}
|