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