7 lines
172 B
Kotlin
Vendored
7 lines
172 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses, -JvmInlineValueClasses
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
inline class IC(val i: Int)
|
|
|
|
fun foo(a: Any, ic: IC) {}
|
|
fun foo(a: Any?, ic: IC) {} |