5daec16ce0
^KT-58938 Fixed
12 lines
178 B
Kotlin
Vendored
12 lines
178 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
abstract class Abstract
|
|
|
|
fun <D> create(fn: () -> D): D {
|
|
return fn()
|
|
}
|
|
|
|
fun main() {
|
|
create(::<!CREATING_AN_INSTANCE_OF_ABSTRACT_CLASS!>Abstract<!>)
|
|
}
|