Files
kotlin-fork/compiler/testData/diagnostics/tests/generics/tpAsReified/InlineableReified.kt
T
2014-11-27 13:49:17 +04:00

9 lines
166 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
inline fun<T1, reified T2> bar(x: T1, y: T2): T2 = y
inline fun<reified R> foo(z: R): R = bar(1, z)
fun box() {
foo("abc")
}