Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/stringTemplate.fir.kt
T

10 lines
238 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_EXPRESSION
inline public fun reg(converter: (Any) -> Any, str: String) {
str
converter("")
}
public inline fun register(converter: (Any) -> Any) {
"123$converter"
reg(converter, "123$converter")
}