compiler testdata: s/trait/interface
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
trait A<O, K> {
|
||||
interface A<O, K> {
|
||||
val o: O
|
||||
val k: K
|
||||
}
|
||||
|
||||
trait B<K> : A<String, K>
|
||||
interface B<K> : A<String, K>
|
||||
|
||||
trait C<O> : A<O, String>
|
||||
interface C<O> : A<O, String>
|
||||
|
||||
class D : B<String>, C<String> {
|
||||
override val o = "O"
|
||||
|
||||
Reference in New Issue
Block a user