Rename tests: boxWithJava -> boxAgainstJava
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
import java.util.Set;
|
||||
|
||||
public class delegationAndInheritanceFromJava {
|
||||
public interface A extends Set<String> {}
|
||||
|
||||
public interface B extends Set<String> {}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import delegationAndInheritanceFromJava.*
|
||||
import java.util.HashSet
|
||||
|
||||
class Impl(b: B): A, B by b
|
||||
|
||||
fun box() = "OK"
|
||||
Reference in New Issue
Block a user