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