Files

8 lines
95 B
Kotlin
Vendored

// FIR_IDENTICAL
object Foo {
operator fun <T> invoke() {}
}
fun main() {
Foo<Int>()
}