mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
20 lines
380 B
Kotlin
Vendored
20 lines
380 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
|
@kotlin.internal.InlineOnly
|
|
inline fun foo() { }
|
|
|
|
inline fun <T> bar() { }
|
|
|
|
inline fun <U, reified V> baz() {}
|
|
|
|
class Foo {
|
|
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
|
@kotlin.internal.InlineOnly
|
|
inline fun foo() { }
|
|
|
|
inline fun <T> bar() { }
|
|
|
|
inline fun <U, reified V> baz() {}
|
|
}
|