``` fun <T> foo(ele: T): Int where T : SomeC...
# announcements
m
Copy code
fun <T> foo(ele: T): Int where T : SomeClass, T : SomeInterface {
return 0
}
It's not obvious at first sight whether the T is extending some type or implementing it in where clause.