[FIR] Support type aliases in double colon expression resolver

This commit is contained in:
Mikhail Glukhikh
2020-01-22 12:48:02 +03:00
parent 84c8697720
commit e39df5bb91
4 changed files with 22 additions and 17 deletions
@@ -11,5 +11,5 @@ inline fun <T, R> Iterable<T>.myMap(transform: (T) -> R): List<R> {
}
fun usesGlobal(p: List<Global>) {
p.<!INAPPLICABLE_CANDIDATE!>myMap<!>(Global::toUpperCase)
p.myMap(Global::toUpperCase)
}