mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
14 lines
281 B
Kotlin
Vendored
14 lines
281 B
Kotlin
Vendored
// KOTLIN_CONFIGURATION_FLAGS: ASSERTIONS_MODE=jvm
|
|
|
|
inline fun inlineMe(crossinline c : () -> Unit) = { c() }
|
|
|
|
class A {
|
|
fun inlineSite() {
|
|
inlineMe {
|
|
assert(true)
|
|
}
|
|
}
|
|
}
|
|
|
|
// 1 GETSTATIC A\$inlineSite\$\$inlined\$inlineMe\$1.\$assertionsDisabled
|