<@U0BLU7JTA> do you think I should be able to reso...
# eap
k
@dmitry.petrov do you think I should be able to resolve a nested type alias using another type alias? example:
Copy code
class Clazz<T,R> {
    typealias Factory = (T) -> R
}

typealias StringClazz<R> = Clazz<String, R>

fun <T> foo(factory: StringClazz<T>.Factory) { // doesn't currently compile
}