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 @@
package test
trait A
interface A
class <caret>B {
companion object {
@@ -1,5 +1,5 @@
package test
trait A
interface A
class <caret>B(val bar: A = object: A {}, val withError = object: A {}, notProperty = object: A {})
@@ -1,6 +1,6 @@
package test
trait A
interface A
public class <caret>B {
private val bar = object : A {}
@@ -1,6 +1,6 @@
package test
trait A
interface A
public class <caret>B {
private fun bar() = object : A { }
@@ -1,6 +1,6 @@
class A
fun foo() {
trait Z: A {}
interface Z: A {}
fun bar() {
class <caret>O2: Z {}
}
@@ -1,4 +1,4 @@
trait Some {
interface Some {
fun <caret>some() {
}
}
@@ -1,3 +1,3 @@
trait Some {
interface Some {
fun <caret>some()
}
@@ -1,4 +1,4 @@
trait Hello {
interface Hello {
var <caret>some: String
get() = "Hi"
set(value) {}