Files
kotlin/idea/testData/structureView/fileStructure/LocalElements.kt
Dmitry Jemerov 3ec583bb16 show icon of class initializer
#KT-11775 Fixed
2016-08-25 14:19:59 +02:00

14 lines
150 B
Kotlin
Vendored

fun foo() {
fun bar() { }
class X {
init {
fun quux() {
}
}
fun xyzzy() {
}
}
}