Don't generate bodies of built-in stub methods into interfaces
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
trait A : Collection<String>
|
||||
trait B : List<String>
|
||||
trait C : Map<Long, Double>
|
||||
trait D : Map.Entry<Any, Nothing>
|
||||
trait E : Iterator<Int>
|
||||
|
||||
fun box(): String {
|
||||
trait F : A, B, C, D, E
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user