Files
kotlin/compiler/testData/diagnostics/testsWithJsStdLib/module/incompleteReifiedArg.kt
2017-10-30 13:10:35 +03:00

5 lines
101 B
Kotlin
Vendored

inline fun <T, reified K> bar() {}
fun foo() {
bar<!WRONG_NUMBER_OF_TYPE_ARGUMENTS!><Int><!>()
}