blob: 5f32ce48eb97bdefb0daa4a24a032c7af1da7bc1 [file] [log] [blame]
fun interface Foo<T> {
fun invoke(): T
}
fun test() {
Foo { }
Foo<Unit> { }
Foo<String> <!TYPE_MISMATCH!>{ }<!>
Foo<String> { "" }
}