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][rejects-valid] not finding partial specialization of nested class template #130160

Closed
ericniebler opened this issue Mar 6, 2025 · 4 comments
Labels
clang:frontend Language frontend issues, e.g. anything involving "Sema" question A question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead!

Comments

@ericniebler
Copy link

the following valid code does not compile on any version of clang i have tested, including trunk:

template <class I>
struct Outer
{
  template <I X, I Y>
  struct Inner;
};

Outer<int> e2; // <== need to instantiate the outer template here

template <class I> 
template <I Y>
struct Outer<I>::Inner<0, Y> {};

constexpr Outer<int>::Inner<0, 4> e{}; // <== type incomplete here

the error is:

<source>:15:35: error: constexpr variable cannot have non-literal type 'const Outer<int>::Inner<0, 4>'
constexpr Outer<int>::Inner<0, 4> e{};
                                  ^
<source>:15:35: error: implicit instantiation of undefined template 'Outer<int>::Inner<0, 4>'
<source>:6:10: note: template is declared here
  struct Inner;
         ^
2 errors generated.
Compiler returned: 1

demo:
https://godbolt.org/z/8rvKqqWhM

@llvmbot llvmbot added the clang Clang issues not falling into any other category label Mar 6, 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 6, 2025
@llvmbot
Copy link
Member

llvmbot commented Mar 6, 2025

@llvm/issue-subscribers-clang-frontend

Author: Eric Niebler (ericniebler)

the following valid code does not compile on any version of clang i have tested, including trunk:
template &lt;class I&gt;
struct Outer
{
  template &lt;I X, I Y&gt;
  struct Inner;
};

Outer&lt;int&gt; e2; // &lt;== need to instantiate the outer template here

template &lt;class I&gt; 
template &lt;I Y&gt;
struct Outer&lt;I&gt;::Inner&lt;0, Y&gt; {};

constexpr Outer&lt;int&gt;::Inner&lt;0, 4&gt; e{}; // &lt;== type incomplete here

the error is:

&lt;source&gt;:15:35: error: constexpr variable cannot have non-literal type 'const Outer&lt;int&gt;::Inner&lt;0, 4&gt;'
constexpr Outer&lt;int&gt;::Inner&lt;0, 4&gt; e{};
                                  ^
&lt;source&gt;:15:35: error: implicit instantiation of undefined template 'Outer&lt;int&gt;::Inner&lt;0, 4&gt;'
&lt;source&gt;:6:10: note: template is declared here
  struct Inner;
         ^
2 errors generated.
Compiler returned: 1

demo:
https://godbolt.org/z/8rvKqqWhM

@shafik
Copy link
Collaborator

shafik commented Mar 6, 2025

Bote both edg/MSVC reject as well: https://godbolt.org/z/6v9hTaEP3

If we comment out the definition of e2 then only edg rejects: https://godbolt.org/z/KcKfvo7qK

@shafik
Copy link
Collaborator

shafik commented Mar 6, 2025

CC @erichkeane

@ericniebler
Copy link
Author

i discussed this issue on the wg21 core reflector. it seems that clang's behavior is conforming. closing.

@EugeneZelenko EugeneZelenko added the question A question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead! label Mar 31, 2025
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" question A question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead!
Projects
None yet
Development

No branches or pull requests

4 participants