remove support for 'trait' keyword
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// IS_APPLICABLE: false
|
||||
trait I {
|
||||
interface I {
|
||||
fun foo()
|
||||
}
|
||||
|
||||
|
||||
@@ -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>
|
||||
}
|
||||
Reference in New Issue
Block a user