Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/annotations/jvmStatic/constructors.kt
T

9 lines
246 B
Kotlin
Vendored

// FIR_IDENTICAL
class A {
<!WRONG_ANNOTATION_TARGET!>@JvmStatic<!> constructor() {}
inner class B {
<!WRONG_ANNOTATION_TARGET!>@JvmStatic<!> constructor() {}
}
}
class C <!WRONG_ANNOTATION_TARGET!>@JvmStatic<!> constructor()