Files
kotlin-fork/idea/testData/inspections/unusedSymbol/object/used.kt
T
Evgeny Gerashchenko 386854d73f Unused object.
unusedButEntryPointMain for class was actually a wrong test: it didn't check anything, because objects are were not checked for unusedness before.
2015-01-22 15:26:49 +03:00

5 lines
57 B
Kotlin

object A
fun main(args: Array<String>) {
val x = A
}