public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/99213] New: Incorrect pretty printing of local class type when type's context contains a class template specialization
@ 2021-02-23  3:39 ppalka at gcc dot gnu.org
  2021-02-23  3:46 ` [Bug c++/99213] " ppalka at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ppalka at gcc dot gnu.org @ 2021-02-23  3:39 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99213

            Bug ID: 99213
           Summary: Incorrect pretty printing of local class type when
                    type's context contains a class template
                    specialization
           Product: gcc
           Version: 10.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ppalka at gcc dot gnu.org
  Target Milestone: ---

Consider:

template <class T>
struct A {
  template <class U>
  static auto f() {
    struct S{};
    return S{};
  }
};

using type = void;
using type = decltype(A<int>::f<char>()); // A<int>::f<char>()::S


For this testcase, GCC 10/11 outputs:

<source>:11:7: error: conflicting declaration 'using type = struct
A<T>::f<char>::S'
   11 | using type = decltype(A<int>::f<char>());
      |       ^~~~

Note that the nested class type 'S' gets pretty printed as 'A<T>::f<char>::S',
i.e. the argument for the template parameter T is missing in the
nested-name-specifier.

GCC 9 outputs:

<source>:11:7: error: conflicting declaration 'using type = struct A<T>::f()
[with U = char; T = int]::S'
   11 | using type = decltype(A<int>::f<char>());
      |       ^~~~

Which isn't perfect either, but importantly all template arguments are shown in
the type.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-02-25 21:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-23  3:39 [Bug c++/99213] New: Incorrect pretty printing of local class type when type's context contains a class template specialization ppalka at gcc dot gnu.org
2021-02-23  3:46 ` [Bug c++/99213] " ppalka at gcc dot gnu.org
2021-02-25 21:45 ` [Bug c++/99213] Suboptimal " cvs-commit at gcc dot gnu.org
2021-02-25 21:46 ` ppalka at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).