dd8396efbc
#KT-34690 Fixed
9 lines
93 B
Kotlin
Vendored
9 lines
93 B
Kotlin
Vendored
class A {
|
|
class B {}
|
|
}
|
|
|
|
fun foo(x: () -> A.B) {}
|
|
|
|
fun main() {
|
|
foo <caret>{ A.B() }
|
|
} |