Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
70b97c5abe682fb7598fc5070d94c39256a0baa4
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
contextReceivers
/
SimpleContextReceivers.kt
blob: 6f4ec6e2933554380b3102261b647c31fe710ea9 [
file
]
// LANGUAGE: +ContextReceivers, -ContextParameters
// 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