Files
kotlin-fork/compiler/testData/diagnostics/tests/generics/tpAsReified/LocalFun.fir.kt
T

10 lines
149 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER -NOT_YET_SUPPORTED_IN_INLINE
inline fun<reified T> foo(x: T) {
fun<reified R> bar() {
}
bar<T>()
}