🍒[cxx-interop] Allow more C++ decls in public Swift interfaces #78084
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Explanation: When compiling with C++ interop enabled, we enable extra safety checks to prevent library authors from accidentally exposing ABI-fragile C++ symbols in resilient Swift interfaces. The heuristic we use is overly strict, and it prevents the compiler from being able to typecheck various modules from their interfaces when C++ interop is enabled. Darwin and System are two of such modules. This relaxes the heuristic to allow exposing C-like structs, as well as constructors and fields of such structs in resilient interfaces.
Scope: Changes the resilience validation mechanism in the typechecker.
Risk: Low, this doesn't change the binaries that are produced by the compiler in any way.
Issue: rdar://140203932 & rdar://141124318
Reviewer: @Xazax-hun @tshortli
Original PRs: #78022 & #78057