1a13c21377
(cherry picked from commit c0d5df1)
10 lines
132 B
Kotlin
Vendored
10 lines
132 B
Kotlin
Vendored
// "Create extension function 'A.foo'" "true"
|
|
fun bar(b: Boolean) {
|
|
|
|
}
|
|
|
|
class A(val n: Int)
|
|
|
|
fun A.test() {
|
|
bar(<caret>foo(n))
|
|
} |