blob: 0061cca8a0f8e7ecc4ec016140b8bb49bcf2436d [file]
// LANGUAGE: +ContextParameters
class C<T> {
fun foo() = 1
}
context(c: C<*>) fun test() = c.foo()
fun box(): String {
with(C<Int>()) {
test()
}
return "OK"
}