Files
kotlin-fork/idea/testData/multiModuleQuickFix/changeSignature/override6/common/Some.kt.after
T
2019-09-23 23:01:47 +07:00

11 lines
208 B
Plaintext
Vendored

expect open class A() {
open fun String.c(a: Int)
}
class C : A() {
override fun String.c(a: Int) {}
}
public inline fun <T, R> with(receiver: T, block: T.() -> R): R {
return receiver.block()
}