Files
swift-mirror/test/ModuleInterface/Inputs/imports-submodule-order/module.modulemap
Jordan Rose 3c5fba3797 When sorting imports for uniquing purposes, use full module names
Fixes a longstanding issue where submodules with the same name in
different top-level modules weren't being sorted deterministically.
This doesn't come up very much in practice, and it would have been
hard to notice anything wrong, but it's good to be right.
2018-09-06 19:53:59 -07:00

8 lines
89 B
Plaintext

module X {
explicit module Submodule {}
}
module Y {
explicit module Submodule {}
}