5889971d62
#KT-7720 Fixed
11 lines
176 B
Plaintext
Vendored
11 lines
176 B
Plaintext
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 { val b1 = b
|
|
a + b1
|
|
} }
|
|
} |