Skip to content
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

[Clang] CTAD for alias template failed as a default type argument is not used for deduction #133132

Open
MagentaTreehouse opened this issue Mar 26, 2025 · 2 comments
Labels
clang:frontend Language frontend issues, e.g. anything involving "Sema"

Comments

@MagentaTreehouse
Copy link
Contributor

MagentaTreehouse commented Mar 26, 2025

template <class T>
struct A {};

template <class T>
using Foo = A<A<T>>;

template <class T = int>
using Bar = Foo<T>;

Bar a{};

Output:

<source>:10:5: error: no viable constructor or deduction guide for deduction of template arguments of 'Bar'
   10 | Bar a{};
      |     ^
<source>:8:1: note: candidate template ignored: couldn't infer template argument 'T'
    8 | using Bar = Foo<T>;
      | ^
<source>:8:1: note: implicit deduction guide declared as 'template <class T> requires __is_deducible(Foo, A<A<T>>) && __is_deducible(Bar, A<A<T>>) Bar() -> A<A<T>>'
<source>:8:1: note: candidate function template not viable: requires 1 argument, but 0 were provided
    2 | struct A {};
      |        ~
    3 | 
    4 | template <class T>
    5 | using Foo = A<A<T>>;
    6 | 
    7 | template <class T = int>
    8 | using Bar = Foo<T>;
      | ^
<source>:8:1: note: implicit deduction guide declared as 'template <class T> requires __is_deducible(Foo, A<A<T>>) && __is_deducible(Bar, A<A<T>>) Bar(A<A<T>>) -> A<A<T>>'
1 error generated.

See https://compiler-explorer.com/z/57KcEqG9K.

@llvmbot llvmbot added the clang Clang issues not falling into any other category label Mar 26, 2025
@EugeneZelenko EugeneZelenko added clang:frontend Language frontend issues, e.g. anything involving "Sema" and removed clang Clang issues not falling into any other category labels Mar 26, 2025
@llvmbot
Copy link
Member

llvmbot commented Mar 26, 2025

@llvm/issue-subscribers-clang-frontend

Author: None (MagentaTreehouse)

```c++ template <class T> struct A {};

template <class T>
using Foo = A<A<T>>;

template <class T = int>
using Bar = Foo<T>;

Bar a{};


Output:
```console
&lt;source&gt;:10:5: error: no viable constructor or deduction guide for deduction of template arguments of 'Bar'
   10 | Bar a{};
      |     ^
&lt;source&gt;:8:1: note: candidate template ignored: couldn't infer template argument 'T'
    8 | using Bar = Foo&lt;T&gt;;
      | ^
&lt;source&gt;:8:1: note: implicit deduction guide declared as 'template &lt;class T&gt; requires __is_deducible(Foo, A&lt;A&lt;T&gt;&gt;) &amp;&amp; __is_deducible(Bar, A&lt;A&lt;T&gt;&gt;) Bar() -&gt; A&lt;A&lt;T&gt;&gt;'
&lt;source&gt;:8:1: note: candidate function template not viable: requires 1 argument, but 0 were provided
    2 | struct A {};
      |        ~
    3 | 
    4 | template &lt;class T&gt;
    5 | using Foo = A&lt;A&lt;T&gt;&gt;;
    6 | 
    7 | template &lt;class T = int&gt;
    8 | using Bar = Foo&lt;T&gt;;
      | ^
&lt;source&gt;:8:1: note: implicit deduction guide declared as 'template &lt;class T&gt; requires __is_deducible(Foo, A&lt;A&lt;T&gt;&gt;) &amp;&amp; __is_deducible(Bar, A&lt;A&lt;T&gt;&gt;) Bar(A&lt;A&lt;T&gt;&gt;) -&gt; A&lt;A&lt;T&gt;&gt;'
1 error generated.

See https://compiler-explorer.com/z/57KcEqG9K.

@changkhothuychung
Copy link
Contributor

I would like to look into this, will open a PR once I have sth.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
clang:frontend Language frontend issues, e.g. anything involving "Sema"
Projects
None yet
Development

No branches or pull requests

4 participants