Files
kotlin-fork/idea/testData/inspectionsLocal/logging/loggerInitializedWithForeignClass/commons/kclassQualiiedName.kt.after
T
2020-05-18 18:16:52 +03:00

13 lines
236 B
Plaintext
Vendored

// WITH_RUNTIME
package org.apache.commons.logging
class Foo {
private val logger = LogFactory.getLog(Foo::class.qualifiedName)
}
class Bar
object LogFactory {
fun getLog(clazz: Class<*>) {}
fun getLog(name: String?) {}
}