You can do the following tough: ``` class Test<...
# announcements
r
You can do the following tough:
Copy code
class Test<T: Any>{
    fun <U: T> foo(): U = TODO()
    fun <U: T?> bar(): U = TODO()
}