Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/funConstructorCallJS.kt
T
2020-04-15 02:37:34 +03:00

10 lines
153 B
Kotlin
Vendored

fun interface Foo<T> {
fun invoke(): T
}
fun test() {
Foo { }
Foo<Unit> { }
Foo<String> <!TYPE_MISMATCH!>{ }<!>
Foo<String> { "" }
}