033ff38fef
In all tests, some red-code diagnostics have changed insignificantly to some other combination or red-code diagnostics ^KT-61060 Related
15 lines
414 B
Kotlin
Vendored
15 lines
414 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
object T2 {
|
|
interface Foo<T>
|
|
|
|
fun <T> delegate(): Foo<T> = TODO()
|
|
|
|
operator fun <T> Foo<T>.provideDelegate(host: T2, p: Any?): Foo<T> = TODO()
|
|
operator fun <T> Foo<T>.getValue(receiver: String, p: Any?): T = TODO()
|
|
|
|
val String.test1: String by delegate()
|
|
val test2: String by <!DELEGATE_SPECIAL_FUNCTION_NONE_APPLICABLE!>delegate()<!>
|
|
}
|