Files
kotlin-fork/idea/testData/inspections/unusedReceiverParameter/implicitReceiverInClass.kt
T
2015-06-17 13:14:07 +03:00

12 lines
123 B
Kotlin
Vendored

class A {
fun simple() {
}
fun Any.ext() {
simple()
}
fun Any.ext1() {
ext1()
}
}