Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
contextualDeclarationUse
/
library
/
source.kt
blob: b90d0ca72dce9ccdce267bd626cceadc0bacd2b1 [
file
]
package
test
context
(
Int
)
val p
get
()
=
42
context
(
Int
)
class
A
{
context
(
Int
)
val p
get
()
=
42
context
(
Int
)
fun m
()
{}
}
context
(
String
)
fun f
()
{
println
(
this
@String
)
}
fun ordinary
()
{
println
(
"I do not require context receivers!"
)
}