Minor. Rename test folder
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
public interface JavaInterface<T> {
|
||||
default T test(T p) {
|
||||
return p;
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package test;
|
||||
|
||||
public interface JavaInterface2<T> extends JavaInterface<T> {
|
||||
|
||||
}
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
OK
|
||||
Vendored
+25
@@ -0,0 +1,25 @@
|
||||
import test.*
|
||||
|
||||
interface KotlinInterface<K> : JavaInterface<String> {
|
||||
|
||||
}
|
||||
|
||||
interface KotlinInterface2 : JavaInterface2<String> {
|
||||
|
||||
}
|
||||
|
||||
open class KotlinClass : JavaInterface<String> {
|
||||
|
||||
}
|
||||
|
||||
open class KotlinClass2 : JavaInterface2<String> {
|
||||
|
||||
}
|
||||
|
||||
open class KotlinClass_2 : KotlinClass() {
|
||||
|
||||
}
|
||||
|
||||
open class KotlinClass2_2 : KotlinClass2() {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user