mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
Fix for KT-8668: java.lang.ClassFormatError: Duplicate field name&signature (based on property access) #KT-8668 Fixed
8 lines
108 B
Kotlin
Vendored
8 lines
108 B
Kotlin
Vendored
package test
|
|
|
|
inline fun <T> inlineFun(arg: T, crossinline f: (T) -> Unit) {
|
|
{
|
|
f(arg)
|
|
}()
|
|
}
|