```class Test<T: Any?> { fun <U> f...
# announcements
k
Copy code
class Test<T: Any?> {
    fun <U> foo(): U where U: T, U: Any = TODO()
}