remove support for 'trait' keyword

This commit is contained in:
Dmitry Jemerov
2015-09-18 16:17:02 +02:00
parent 86833c1a74
commit 4ca434da54
217 changed files with 705 additions and 821 deletions
@@ -1,11 +1,11 @@
package foo
trait A {
interface A {
fun bar(): Int = 2
fun foo(t: Int): Int = t + 1
}
trait B : A {
interface B : A {
override fun bar(): Int = 3
}