6052e24626
^KT-59791 In Progress
12 lines
419 B
Kotlin
Vendored
12 lines
419 B
Kotlin
Vendored
// ISSUE: KT-61077
|
|
|
|
val test: Int by <!DELEGATE_SPECIAL_FUNCTION_NONE_APPLICABLE!>materializeDelegate()<!>
|
|
|
|
fun <T: CharSequence> materializeDelegate(): Box<T> = TODO()
|
|
|
|
operator fun <K: Comparable<K>> Box<K>.provideDelegate(receiver: Any?, property: kotlin.reflect.KProperty<*>): K = TODO()
|
|
|
|
operator fun <Q: Comparable<Q>> Q.getValue(thisRef: Any?, property: kotlin.reflect.KProperty<*>): Q = TODO()
|
|
|
|
class Box<V> {}
|