dmitry.petrov
typealias M<T> = Map<T, T> fun <T> foo(m: M<T>) { ... } fun bar(m: M<*>) { foo(m) /* compilation error */ }