mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
13 lines
257 B
Kotlin
Vendored
13 lines
257 B
Kotlin
Vendored
// p.AllInlineOnly
|
|
// WITH_RUNTIME
|
|
@file:kotlin.jvm.JvmMultifileClass
|
|
@file:kotlin.jvm.JvmName("AllInlineOnly")
|
|
|
|
package p
|
|
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun f(): Int = 3
|
|
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun g(p: String): String = "p"
|