blob: f52c2be2a49f4f17f860f90d84be22b6e30190e8 [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"
// No syntax for explicit context arguments for properties
fun o() = "O" //with(A()) { b }
fun k() = b
fun box() = o() + k()