mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
12 lines
160 B
Kotlin
Vendored
12 lines
160 B
Kotlin
Vendored
// A
|
|
class A {
|
|
inline fun test() {
|
|
{
|
|
`access$test`(1)
|
|
}()
|
|
}
|
|
|
|
@PublishedApi
|
|
internal fun `access$test`(p: Int) = p
|
|
}
|