Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
funConstructorCallJS.kt
blob: 5f32ce48eb97bdefb0daa4a24a032c7af1da7bc1 [
file
]
fun
interface
Foo
<
T
>
{
fun invoke
():
T
}
fun test
()
{
Foo
{
}
Foo
<
Unit
>
{
}
Foo
<
String
>
<!
TYPE_MISMATCH
!>{
}<!>
Foo
<
String
>
{
""
}
}