mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
10 lines
240 B
Kotlin
Vendored
10 lines
240 B
Kotlin
Vendored
class MyClass {
|
|
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
|
@kotlin.internal.InlineOnly
|
|
inline fun test(s: String) {}
|
|
}
|
|
|
|
// TESTED_OBJECT_KIND: function
|
|
// TESTED_OBJECTS: MyClass, test
|
|
// FLAGS: ACC_PRIVATE, ACC_FINAL
|