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