mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Overlay-overlay dependencies are incorrectly marked indirect when the downstream overlay's underlying module imports the upstream overlay's underlying module but the downstream overlay does not explicitly import the upstream overlay.
23 lines
369 B
Plaintext
23 lines
369 B
Plaintext
module CoreShip {
|
|
header "CoreShip.h"
|
|
export *
|
|
}
|
|
|
|
module CoreFuel {
|
|
umbrella header "CoreFuel/CoreFuel.h"
|
|
explicit module CoreFuelHydrogen {
|
|
header "CoreFuel/CoreFuelHydrogen.h"
|
|
export *
|
|
}
|
|
explicit module CoreFuelMethane {
|
|
header "CoreFuel/CoreFuelMethane.h"
|
|
export *
|
|
}
|
|
export *
|
|
}
|
|
|
|
module LaunchKit {
|
|
header "LaunchKit.h"
|
|
export *
|
|
}
|