blob: 624b483c0385b731e26f7f3fbd2cc35ab7d1a9bb [file]
// one.MyClass
// LANGUAGE: +ContextParameters
// SKIP_IDE_TEST
package one
class MyClass {
context(a: Int, b: String)
fun Boolean.contextAndReceiverAndValue(param: Long) {}
context(_: Int)
fun unnamedContext() {}
context(a: Int, b: String)
val Boolean.propertyContextReceiver: Int get() = 0
context(_: Int)
val propertyContext: Boolean get() = false
}