f2accb7b9e
#KT-16067 Fixed
13 lines
193 B
Kotlin
Vendored
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
|
|
}
|
|
} |