Hmm, typealias doesn't do everything that I would ...
# getting-started
d
Hmm, typealias doesn't do everything that I would expect:
Copy code
typealias A = B
class B { companion object { fun foo(){} } }
fun example() { A.Companion.foo() }
fails to compile, because it can't find A.Companion.
d
Yeah, that's basically how I got around it.
k
d
Added a vote for this issue.