Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
171b459
CWG2917 Disallow multiple friend-type-specifiers for a friend template
eisenwave Nov 9, 2025
fa0d3ec
[temp.pre] Add error explanation to comment
eisenwave Nov 9, 2025
d561d81
CWG2923 Note about infinite loops and execution steps
eisenwave Nov 9, 2025
d13b700
CWG3005 Function parameters should never be name-independent
eisenwave Nov 9, 2025
3eb4722
CWG3043 Lifetime extension for temporaries in expansion statements
eisenwave Nov 9, 2025
40f6ad0
CWG3044 Iterating expansion statements woes
eisenwave Nov 9, 2025
835bdb0
CWG3045 Regularizing environment interactions of expansion statement
eisenwave Nov 9, 2025
9cc77c1
CWG3048 Empty destructuring expansion statements
eisenwave Nov 9, 2025
c0775d4
CWG3053 Allowing #undef likely
eisenwave Nov 9, 2025
dddbef9
CWG3061 Trailing comma in an expansion-init-list
eisenwave Nov 9, 2025
98bf7ee
CWG3063 Lifetime extension of temporaries past function return
eisenwave Nov 9, 2025
fe509fc
CWG3074 Redundant ill-formedness for module macros
eisenwave Nov 9, 2025
c0dfcca
CWG3082 Allow for call-compatible function types in reinterpret_cast
eisenwave Nov 9, 2025
0078561
CWG3084 compound-statements inside iteration-statements
eisenwave Nov 9, 2025
11b0144
CWG3089 const-default-constructible improperly handles std::meta::info
eisenwave Nov 9, 2025
7dca467
CWG3092 base-specifiers are not "declared"
eisenwave Nov 9, 2025
14f03aa
CWG3093 Missing integration of direct base class relationships
eisenwave Nov 9, 2025
94055b3
CWG3094 Rework phases for string literal concatenation and token form…
eisenwave Nov 9, 2025
c232b23
CWG3095 Type-dependent packs that are not structured binding packs
eisenwave Nov 9, 2025
edfd0ae
CWG3098 Remove redundancy "names or designates"
eisenwave Nov 9, 2025
c6fa234
CWG3099 Instantiation of type aliases from alias templates is unspeci…
eisenwave Nov 9, 2025
b3ac849
CWG3101 Types "compounded" from other types
eisenwave Nov 9, 2025
86619b3
CWG3108 Reflection on type aliases
eisenwave Nov 9, 2025
f6bf643
CWG3109 Access checking when designating a protected member by a splice
eisenwave Nov 9, 2025
4a044ac
CWG3110 Constexpr allocation for literal types
eisenwave Nov 9, 2025
d737b63
CWG3113 When is an expansion-init-list type-dependent?
eisenwave Nov 9, 2025
3187ac9
CWG3114 Indirect base classes for class member access with direct bas…
eisenwave Nov 9, 2025
592416f
CWG3115 Function parameters of consteval-only type
eisenwave Nov 9, 2025
69600e3
CWG3117 Overriding by a consteval virtual function
eisenwave Nov 9, 2025
80f2385
CWG3118 Mangling reflections of annotations is infeasible
eisenwave Nov 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
CWG3099 Instantiation of type aliases from alias templates is unspeci…
…fied
  • Loading branch information
eisenwave authored and tkoeppe committed Dec 13, 2025
commit c6fa234d8052b51e40b0bbf7fe998402c036fc4b
4 changes: 3 additions & 1 deletion source/templates.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4689,7 +4689,9 @@
the alias template.
Any other \grammarterm{template-id}
that names a specialization of an alias template is
a \grammarterm{typedef-name} for a type alias.
a \grammarterm{typedef-name} for a type alias;
such a \grammarterm{template-id} is ill-formed if
forming the associated type results in substitution failure.
\begin{note}
The alias template name is not deduced from such a type\iref{temp.deduct.type}.
\end{note}
Expand Down