62e856956c
The result of k1/k2 should be similar here, the differences should be fixed by KT-60764
17 lines
332 B
Kotlin
Vendored
17 lines
332 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package test
|
|
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
annotation class A
|
|
|
|
class PrivateConstField {
|
|
private companion object {
|
|
const val CONST: Int = 10
|
|
@A
|
|
const val CONST_WITH_ANNOTATION: Int = 10
|
|
|
|
val field: Int = 10
|
|
@A
|
|
val fieldWithAnnotation: Int = 10
|
|
}
|
|
} |