IDE testdata: s/trait/interface

This commit is contained in:
Dmitry Jemerov
2015-05-12 20:39:44 +02:00
parent 99cad4b43f
commit 625096466e
698 changed files with 1049 additions and 1049 deletions
@@ -25,7 +25,7 @@ public object KotlinObject {
fun f() = 1
}
public trait StaticFieldInClassObjectInTrait {
public interface StaticFieldInClassObjectInTrait {
companion object {
public val XX: String = "xx"
}
@@ -37,13 +37,13 @@ object PlatformStaticFun {
}
}
trait TraitNoImpl {
interface TraitNoImpl {
fun foo()
}
public class TraitWithDelegatedNoImpl(f: TraitNoImpl): TraitNoImpl by f
trait TraitWithImpl {
interface TraitWithImpl {
fun foo() = 1
}