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
@@ -1,9 +1,9 @@
trait In<in T>
trait Out<out T>
trait Inv<T>
trait Pair<out X, out Y>
interface In<in T>
interface Out<out T>
interface Inv<T>
interface Pair<out X, out Y>
trait Test<in I, out O, P> {
interface Test<in I, out O, P> {
fun ok1(): O
fun ok2(): In<I>
fun ok3(): In<In<O>>