Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
contextReceivers
/
SimpleContextReceivers.kt
blob: ee8ef928a8f1a748b177ac6b60f0e71fabf54269 [
file
]
// LANGUAGE: +ContextReceivers
// IGNORE_FIR_DIAGNOSTICS
package
test
interface
A
interface
B
context
(
A
)
class
C
{
context
(
B
)
fun f
()
{}
}
context
(
A
)
fun g
()
{}
context
(
B
)
val h
:
Int
get
()
=
42