Files
kotlin-fork/analysis/low-level-api-fir/testdata/lazyResolve/substitutionFakeOverride.kt
T
Dmitrii Gridin f74d4494aa [LL FIR] fix designation path for synthetic declarations
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
2023-06-22 10:22:37 +00:00

7 lines
151 B
Kotlin

// MEMBER_NAME_FILTER: property
abstract class S<caret>ubClass: AbstractClass<Int>()
abstract class AbstractClass<T> {
abstract val property: T
}