Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/companion3.kt.after
T
2018-07-23 18:21:38 +03:00

9 lines
116 B
Plaintext
Vendored

class C {
companion object {
fun foo(s: String) = 1
}
}
class Test {
val f = C.Companion::foo
}