Is this syntax coming back? (the `where class obje...
# language-proposals
a
Is this syntax coming back? (the
where class object
part)
Copy code
fun replaceNullsWithDefaults<T : Any>(list : List<T?>) : List<T> 
    where class object T : Default<T> { 
// ...
(as originally seen way back when in https://confluence.jetbrains.com/display/Kotlin/Generics)