Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
contextReceivers
/
SimpleContextReceivers.kt
blob: fdcc4c0642128727ee9c1262e86e64238dd9413d [
file
] [
log
] [
blame
]
// LANGUAGE: +ContextReceivers
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