Files
kotlin-fork/compiler/testData/diagnostics/tests/operatorsOverloading/kt13349.kt
T
2016-08-15 19:24:17 +03:00

7 lines
97 B
Kotlin
Vendored

object Foo {
operator fun <T> invoke() {}
}
fun main(args: Array<String>) {
Foo<Int>()
}