Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49ce95ac6651db5c91015f9b0de5c3bff2185e61
/
.
/
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