Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToElvis/kt19666.kt
T
2019-06-07 12:23:54 +07:00

13 lines
193 B
Kotlin
Vendored

// WITH_RUNTIME
interface Taggable {
val tag: String
}
fun Any.log() {
val tag = <caret>if (this is Taggable) {
tag
}
else {
this::class.java.simpleName
}
}