Closed
Description
Compiler version
3.3.0
Minimized code
object A:
val x, y, z = 0
object B:
export A.{*, x as _} // compile error at this line
Output
named imports cannot follow wildcard imports
export A.{*, x as _}
Expectation
The compiler correctly stops, but there are no import statements involved; the error message should be
named exports cannot follow wildcard exports
export A.{*, x as _}