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