98e12b0d7b
Also, we shouldn't transform type alias during the implicit type phase ^KT-63042 ^KT-63832 Fixed
13 lines
213 B
Kotlin
Vendored
13 lines
213 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
annotation class Anno(val position: String)
|
|
|
|
class MyClass {
|
|
<!WRONG_ANNOTATION_TARGET!>@Anno("init $prop")<!> init {
|
|
|
|
}
|
|
|
|
companion object {
|
|
private const val prop = 0
|
|
}
|
|
}
|