show icon of class initializer

#KT-11775 Fixed
This commit is contained in:
Dmitry Jemerov
2016-08-24 20:33:37 +02:00
parent 8ff0814221
commit 3ec583bb16
7 changed files with 14 additions and 4 deletions
@@ -2,4 +2,6 @@
-foo(): Unit
bar(): Unit
-X
-<class initializer>
quux(): Unit
xyzzy(): Unit
@@ -2,6 +2,11 @@ fun foo() {
fun bar() { }
class X {
init {
fun quux() {
}
}
fun xyzzy() {
}
}