Files
kotlin-fork/compiler/testData/diagnostics/tests/compareWithReified.kt
T
Nikolay Lunyak b0e6db7807 [FIR] Reproduce KT-66005
^KT-66005
2024-02-26 09:53:13 +00:00

8 lines
212 B
Kotlin
Vendored

// ISSUE: KT-66005
inline fun <reified T> foo(v: T) {
<!TYPE_PARAMETER_IS_NOT_AN_EXPRESSION!>T<!> <!DEBUG_INFO_MISSING_UNRESOLVED!>==<!> Int
// This is a comparison of companion objects
Int == Int
}