Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
funConstructorCallJS.fir.kt
blob: e44489fec53d2f316299170662085f28fdbcc22f [
file
]
fun
interface
Foo
<
T
>
{
fun invoke
():
T
}
fun test
()
{
Foo
{
}
Foo
<
Unit
>
{
}
Foo
<
String
>
<!
ARGUMENT_TYPE_MISMATCH
!>{
}<!>
Foo
<
String
>
{
""
}
}