compiler testdata: s/trait/interface

This commit is contained in:
Dmitry Jemerov
2015-05-12 12:38:49 +02:00
parent a5ed5d4269
commit 4bdf598bfe
803 changed files with 1456 additions and 1456 deletions
@@ -8,7 +8,7 @@ fun test(foo: Foo) {
}
//variable as member
trait A {
interface A {
val foo: Foo
}
@@ -22,7 +22,7 @@ fun test(a: A) {
}
//variable as extension
trait B {
interface B {
}
val B.foo: Foo
get() = Foo()
@@ -36,9 +36,9 @@ fun test(b: B) {
}
//variable as member extension
trait C
interface C
trait D {
interface D {
val C.foo: Foo
fun test(c: C) {