mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
12 lines
289 B
Kotlin
Vendored
12 lines
289 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
class MyClass() {
|
|
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
|
@kotlin.internal.InlineOnly
|
|
inline fun test(s: String = "") {
|
|
}
|
|
}
|
|
|
|
// TESTED_OBJECT_KIND: function
|
|
// TESTED_OBJECTS: MyClass, test$default
|
|
// FLAGS: ACC_STATIC, ACC_SYNTHETIC
|