Files
kotlin-fork/idea/testData/intentions/branched/ifThenToElvis/kt19666.kt.after
T
2017-09-04 20:36:07 +02:00

8 lines
147 B
Plaintext
Vendored

// WITH_RUNTIME
interface Taggable {
val tag: String
}
fun Any.log() {
val tag = (this as? Taggable)?.tag ?: this::class.java.simpleName
}