Files
kotlin-fork/compiler/testData/compileKotlinAgainstCustomBinaries/contextualDeclarationUse/contextualDeclarationUse.kt
T
2022-01-21 17:22:00 +03:00

12 lines
164 B
Kotlin
Vendored

package test
fun callOrdinaryAndContextualDeclaration() {
ordinary()
with(42) {
f()
val a = A()
a.p
a.m()
p
}
}