Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/parsingPriorityOfGenericArgumentsVsLess.fir.kt
T

10 lines
127 B
Kotlin
Vendored

package test
class Foo {
fun <T> bar(x: Int) = x
}
fun test() {
Foo::bar <!SYNTAX!>< Int ><!> <!SYNTAX!>(2 + 2)<!>
}