5889971d62
#KT-7720 Fixed
9 lines
175 B
Kotlin
Vendored
9 lines
175 B
Kotlin
Vendored
class A(val a: Int)
|
|
class B(val b: Int)
|
|
|
|
fun foo(f: A.() -> Int) = A(1).f()
|
|
fun bar(f: B.() -> Int) = B(2).f()
|
|
|
|
fun test() {
|
|
foo { bar { a + <selection>b</selection> } }
|
|
} |