9607739d30
#KT-37434 Fixed
10 lines
153 B
Kotlin
Vendored
10 lines
153 B
Kotlin
Vendored
fun interface Foo<T> {
|
|
fun invoke(): T
|
|
}
|
|
|
|
fun test() {
|
|
Foo { }
|
|
Foo<Unit> { }
|
|
Foo<String> <!TYPE_MISMATCH!>{ }<!>
|
|
Foo<String> { "" }
|
|
} |