-
Notifications
You must be signed in to change notification settings - Fork 10.6k
[cxx-interop] Do not import template type arguments #85379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
j-hui
merged 6 commits into
swiftlang:main
from
j-hui:dont-import-template-type-arguments-round-2
Nov 11, 2025
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b80ab98
[cxx-interop] Check template argument safety in ClangDeclExplicitSafety
j-hui 3255ffb
[cxx-interop] Do not import template type arguments
j-hui 6c997ae
[cxx-interop] Make ClangDeclExplicitSafety request non-recursive
j-hui cbae2fc
[evaluator] hasActiveRequest() considered harmful
j-hui 2b9b507
[cxx-interop] Add a comment about ClangDeclExplicitSafety return Safe…
j-hui 6b3f8c7
[cxx-interop] Rename CxxDeclExplicitSafetyDescriptor -> ClangDeclExpl…
j-hui File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
test/Interop/Cxx/templates/sfinae-template-type-arguments.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| // RUN: split-file %s %t | ||
| // RUN: %target-clang -c -o /dev/null -Xclang -verify -I %t/Inputs %t/cxx.cpp | ||
| // RUN: %target-swift-frontend -typecheck -verify -cxx-interoperability-mode=default -I %t%{fs-sep}Inputs -verify-additional-file %t%{fs-sep}Inputs%{fs-sep}CxxHeader.h %t%{fs-sep}main.swift | ||
| // RUN: %target-swift-ide-test -print-module -module-to-print=CxxModule -I %t/Inputs -source-filename=x -cxx-interoperability-mode=default | %FileCheck %t/Inputs/CxxHeader.h | ||
|
|
||
| //--- Inputs/module.modulemap | ||
| module CxxModule { | ||
| requires cplusplus | ||
| header "CxxHeader.h" | ||
| } | ||
|
|
||
| //--- Inputs/CxxHeader.h | ||
| #pragma once | ||
|
|
||
| struct Empty {}; | ||
| template <typename T> struct MissingMember { typename T::Missing member; }; | ||
| using SUB = MissingMember<Empty>; | ||
|
|
||
| struct Incomplete; | ||
| template <typename T> struct IncompleteField { T member; }; | ||
| using INC = IncompleteField<Incomplete>; | ||
|
|
||
| template <typename S = SUB, typename I = INC> struct DefaultedTemplateArgs {}; | ||
| using DefaultedTemplateArgsInst = DefaultedTemplateArgs<>; | ||
|
|
||
| // CHECK: struct DefaultedTemplateArgs<MissingMember<Empty>, IncompleteField<Incomplete>> { | ||
| // CHECK: } | ||
| // CHECK: typealias DefaultedTemplateArgsInst = DefaultedTemplateArgs<MissingMember<Empty>, IncompleteField<Incomplete>> | ||
|
|
||
| template <typename S, typename I> struct ThrowsAwayTemplateArgs {}; | ||
| using ThrowsAwayTemplateArgsInst = ThrowsAwayTemplateArgs<SUB, INC>; | ||
|
|
||
| // CHECK: struct ThrowsAwayTemplateArgs<MissingMember<Empty>, IncompleteField<Incomplete>> { | ||
| // CHECK: } | ||
| // CHECK: typealias ThrowsAwayTemplateArgsInst = ThrowsAwayTemplateArgs<MissingMember<Empty>, IncompleteField<Incomplete>> | ||
|
|
||
| //--- cxx.cpp | ||
| // expected-no-diagnostics | ||
| #include <CxxHeader.h> | ||
| void make(void) { | ||
| DefaultedTemplateArgs<> dta{}; | ||
| DefaultedTemplateArgsInst dtai{}; | ||
|
|
||
| ThrowsAwayTemplateArgs<SUB, INC> tata{}; | ||
| ThrowsAwayTemplateArgsInst tatai{}; | ||
| } | ||
|
|
||
| //--- main.swift | ||
| import CxxModule | ||
| func make() { | ||
| let _: DefaultedTemplateArgsInst = .init() | ||
| let _: ThrowsAwayTemplateArgsInst = .init() | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.