Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/funConstructorCallJS.fir.kt
T
2023-01-09 08:57:08 +00:00

10 lines
162 B
Kotlin
Vendored

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