blob: b9c300f3654daca08886cefdd0e4401d3cce9e2c [file]
// IGNORE_BACKEND: JS
class Test<T: Char>(val k: T) {
fun test(x: T = k): String {
return "O$x"
}
}
fun box() = Test('K').test()