KT-1359 Cannot declare object inheriting from a trait or class.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package foo
|
||||
|
||||
trait Foo {
|
||||
fun f() : Boolean
|
||||
}
|
||||
|
||||
object foo : Foo {
|
||||
override fun f() = true
|
||||
}
|
||||
|
||||
fun box() : Boolean {
|
||||
return foo.f()
|
||||
}
|
||||
Reference in New Issue
Block a user