compiler testdata: s/trait/interface
This commit is contained in:
@@ -2,7 +2,7 @@ open class A<T> {
|
||||
open fun foo(a: T): Int = 2
|
||||
}
|
||||
|
||||
trait B<T> : A<T> {
|
||||
interface B<T> : A<T> {
|
||||
override fun foo(a: T): Int = 1
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user