Minor. Rename test folder

This commit is contained in:
Mikhael Bogdanov
2020-10-06 07:14:03 +02:00
parent d2c4be18a0
commit 39cde978d0
4 changed files with 0 additions and 0 deletions
@@ -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() {
}