remove support for 'trait' keyword

This commit is contained in:
Dmitry Jemerov
2015-09-18 16:17:02 +02:00
parent 86833c1a74
commit 4ca434da54
217 changed files with 705 additions and 821 deletions
@@ -1,5 +1,5 @@
// IS_APPLICABLE: false
trait I {
interface I {
fun foo()
}
+1 -1
View File
@@ -1,4 +1,4 @@
public trait I {
public interface I {
public fun foo(): String
}
@@ -1,4 +1,4 @@
public trait I {
public interface I {
public fun foo(): String
}
@@ -1,8 +1,8 @@
// IS_APPLICABLE: false
public trait I {
public interface I {
public val v: String?
}
public trait I1 : I {
public interface I1 : I {
override val v: String<caret>
}