Add @RequireKotlin(1.2.40) on interface with @JvmDefaults and its subinterfaces

This commit is contained in:
Mikhael Bogdanov
2018-04-04 13:10:04 +02:00
parent be33a9bf3b
commit 4aec9499b5
3 changed files with 62 additions and 20 deletions
+8
View File
@@ -0,0 +1,8 @@
package test
interface Base {
@JvmDefault
fun foo() {}
}
interface Derived : Base