Show delegated methods when "Show inherited" enabled in file structure view

This commit is contained in:
Nikolay Krasko
2014-05-28 21:59:59 +04:00
parent 582c5874b7
commit be6d68741b
5 changed files with 33 additions and 4 deletions
@@ -0,0 +1,9 @@
trait Some {
fun first()
fun second()
}
class ClassSome: Some {
override fun first() {}
override fun second() {}
}