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
@@ -1,6 +1,6 @@
class U<A>
trait T<A> {
interface T<A> {
fun U<A>.foofoofoo<B>(b: B): Int
}
@@ -1,6 +1,6 @@
class U<A>
trait T<A> {
interface T<A> {
fun <caret>foofoofoo<B>(a: A, b: B): Int
}
@@ -1,12 +1,12 @@
trait A {
interface A {
fun f(i: Int) {}
}
trait B {
interface B {
fun f(i: Int) {}
}
trait C : A, B {
interface C : A, B {
}
@@ -1,12 +1,12 @@
trait A {
interface A {
fun f() {}
}
trait B {
interface B {
fun f() {}
}
trait C : A, B {
interface C : A, B {
}
@@ -1,6 +1,6 @@
class U<A>
trait T<A, B> {
interface T<A, B> {
fun foofoofoo<C>(a: List<C>, b: A?, c: U<B>): U<C>?
}
@@ -1,6 +1,6 @@
class U<A>
trait T<A, B> {
interface T<A, B> {
fun <caret>foofoofoo<C>(a: A, b: B, c: C): Int
}
@@ -1,4 +1,4 @@
trait T {
interface T {
fun foo(a: Int = 1,
b: String = "2")
}
@@ -1,4 +1,4 @@
trait T {
interface T {
fun <caret>foo(b: String = "2",
a: Int = 1)
}
@@ -1,4 +1,4 @@
trait Foo {
interface Foo {
fun bar(n: Int)
}
@@ -1,4 +1,4 @@
trait Foo {
interface Foo {
fun <caret>bar(s: String)
}
@@ -2,7 +2,7 @@ class A {
fun f(param: Int)
}
trait B {
interface B {
fun f(p: Int)
}