d93ffe0aec
^KT-60638 Fixed
10 lines
189 B
Kotlin
Vendored
10 lines
189 B
Kotlin
Vendored
package usage
|
|
|
|
class MyType
|
|
class MyClass
|
|
val MyClass.isInterface get() = 4
|
|
|
|
fun usage(type: MyType) {
|
|
type.<!FUNCTION_EXPECTED, UNRESOLVED_REFERENCE_WRONG_RECEIVER!>isInterface<!>()
|
|
}
|