Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
contextReceivers
/
SimpleContextReceivers.kt
blob: 0a651006ce2822ec744a6fc7611463de8d1cb433 [
file
]
// !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