Skip @JvmDefault in UnimplementedKotlinInterfaceMemberAnnotator
#KT-23967 Fixed
This commit is contained in:
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
package test;
|
||||
|
||||
public class ExtendClassWithJvmDefaultImplementation {
|
||||
public static class ExtendClass extends KotlinClass {
|
||||
|
||||
}
|
||||
|
||||
public static class ImplementInterface implements KotlinInterface {
|
||||
|
||||
}
|
||||
}
|
||||
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
package test
|
||||
|
||||
interface KotlinInterface {
|
||||
@JvmDefault
|
||||
fun bar() {
|
||||
|
||||
}
|
||||
|
||||
// @JvmDefault
|
||||
// val foo: String
|
||||
// get() = "123"
|
||||
}
|
||||
|
||||
|
||||
abstract class KotlinClass : KotlinInterface {
|
||||
|
||||
}
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
// LANGUAGE_LEVEL 1.8
|
||||
// WITH_RUNTIME
|
||||
Reference in New Issue
Block a user