Added test for inheritor renamer (Kotlin subclasses of Java class).

This commit is contained in:
Evgeny Gerashchenko
2015-04-15 20:29:47 +03:00
parent e1f6dfa52d
commit 8fe3a1d366
6 changed files with 25 additions and 0 deletions
@@ -0,0 +1,3 @@
class Bar {
}
@@ -0,0 +1,3 @@
class BarImpl : Bar()
object BarObj : Bar()