Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
labelClashesWithContextReceivers.fir.kt
blob: b1af2a24c5e830329cbd0a1343c3b5e107123787 [
file
] [
log
] [
blame
]
// !LANGUAGE: +ContextReceivers
// !RENDER_DIAGNOSTICS_FULL_TEXT
class
Some
{
context
(
Some
,
String
)
fun foo
()
{
//this@foo
this
@Some
this
@String
}
context
(
Some
)
val
self
:
Some
get
()
=
this
@Some
}