Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
propertyWithContextAndWithout.kt
blob: 8474d16eb40981175fa6359d3ce5589e0e10447e [
file
]
// IGNORE_BACKEND_K1: ANY
// LANGUAGE: +ContextParameters
// ISSUE: KT-74045: CONFLICTING_KLIB_SIGNATURES_ERROR
class
A
context
(
a
:
A
)
val b
:
String
get
()
=
"O"
val b
:
String
get
()
=
"K"
fun o
()
=
with
(
A
())
{
b
}
fun k
()
=
b
fun box
()
=
o
()
+
k
()