KT-1359 Cannot declare object inheriting from a trait or class.

This commit is contained in:
pTalanov
2012-03-13 15:48:38 +04:00
parent 43e42657f2
commit df2d9769fa
3 changed files with 21 additions and 1 deletions
@@ -0,0 +1,13 @@
package foo
trait Foo {
fun f() : Boolean
}
object foo : Foo {
override fun f() = true
}
fun box() : Boolean {
return foo.f()
}