Files
kotlin-fork/compiler/testData/diagnostics/tests/compareWithReified.fir.kt
T
2024-02-26 09:53:13 +00:00

8 lines
176 B
Kotlin
Vendored

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