Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
psi
/
contextParameters
/
contextReceiversOnClass.kt
blob: 7097e762fc3aaf0270a75e183fcd711b91f000a8 [
file
]
// LANGUAGE: +ContextReceivers
annotation
class
MyAnnotation
context
(
A
,
B
)
@MyAnnotation
private
open
class
ContextReceiversOnClass
{
}
class
A
{
val valueA
:
Int
=
10
}
class
B
{
val valueB
:
Int
=
11
}