Files
kotlin-fork/idea/testData/inspectionsLocal/removeRedundantQualifierName/classLiteral4.kt.after
T
2019-06-24 15:17:09 +07:00

15 lines
265 B
Plaintext
Vendored

// WITH_RUNTIME
// DISABLE-ERRORS
package foo.www.ddd
class Check {
class BBD {
class Bwd {
fun dad() {
fun Bwd(): String = ""
val a = Bwd::class.java.annotatedInterfaces.size
}
}
}
}