5505fd207e
Why does this check even exist? K1 doesn't do it. ^KT-57195 Fixed
13 lines
254 B
Kotlin
Vendored
13 lines
254 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// ISSUE: KT-57195
|
|
|
|
import java.io.File
|
|
|
|
open class AbstractFE1UastTest {
|
|
open var testDataDir = File("").parentFile
|
|
}
|
|
|
|
class Legacy: AbstractFE1UastTest() {
|
|
override var testDataDir: File? = File("").parentFile // K1 & K2: ok
|
|
}
|