f74d4494aa
A designation path for synthetic declarations like fake override or member delegate contained the wrong FirFile, because it was provided by the original declaration that is wrong. So we should pick up the file from our path, because it shouldn't be synthetic ^KT-59505 Fixed
7 lines
151 B
Kotlin
7 lines
151 B
Kotlin
// MEMBER_NAME_FILTER: property
|
|
abstract class S<caret>ubClass: AbstractClass<Int>()
|
|
|
|
abstract class AbstractClass<T> {
|
|
abstract val property: T
|
|
}
|