KT-2874 Exception in front-end when extending Java class

#KT-2874 Fixed
This commit is contained in:
Nikolay Krasko
2013-02-22 21:37:04 +04:00
parent e8088ec6a7
commit 8d860827cf
4 changed files with 56 additions and 9 deletions
@@ -0,0 +1,8 @@
public trait TestTrait {
public fun f()
}
class Test: TestTrait {
fun f() = 12
}