UnimplementedKotlinInterfaceMemberAnnotator: shouldn't report methods with @JvmStatic

#KT-27208 Fixed
This commit is contained in:
Dmitry Gridin
2019-07-23 14:59:48 +03:00
parent cf07585b11
commit 311cfc3806
9 changed files with 53 additions and 1 deletions
@@ -0,0 +1,8 @@
package test
interface A {
companion object {
@JvmStatic
fun create() {}
}
}