No. What I'm saying is, if type aliases do not cre...
# multiplatform
e
No. What I'm saying is, if type aliases do not create new types, that means
actual typealias Foo = Bar
is equivalent to
typealias Foo = Bar
. In which case, why can't
fun fooBar()
fulfill what would require
actual fun fooBar()
?