We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-clang-frontend
Author: None (MagentaTreehouse)
template <class T> using Foo = A<A<T>>;
template <class T = int> using Bar = Foo<T>;
Bar a{};
Output: ```console <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.
Sorry, something went wrong.
I would like to look into this, will open a PR once I have sth.
No branches or pull requests
Output:
See https://compiler-explorer.com/z/57KcEqG9K.
The text was updated successfully, but these errors were encountered: