Files
kotlin/compiler/testData/codegen/boxWithJava/reflection/nestedClasses/K.kt
2015-08-29 17:59:45 +03:00

8 lines
196 B
Kotlin
Vendored

import kotlin.test.assertEquals
fun box(): String {
assertEquals(listOf("Inner", "Nested", "PrivateNested"), J::class.nestedClasses.map { it.simpleName!! }.toSortedList())
return "OK"
}