85a951db52
#KT-13330 Fixed #KT-13349 Fixed
7 lines
97 B
Kotlin
Vendored
7 lines
97 B
Kotlin
Vendored
object Foo {
|
|
operator fun <T> invoke() {}
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
Foo<Int>()
|
|
} |