public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/51203] New: Recursive alias templates not working
@ 2011-11-18  7:49 pubby.8 at gmail dot com
  2011-11-18  8:22 ` [Bug c++/51203] " pubby.8 at gmail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pubby.8 at gmail dot com @ 2011-11-18  7:49 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51203

             Bug #: 51203
           Summary: Recursive alias templates not working
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: pubby.8@gmail.com


-std=c++11
gcc version 4.7.0 20111112 (experimental) (GCC)

I presume this is correctly formed code:

template <typename t>
struct foo {
  template <int n>
  using next = typename foo<t>::next<n + 1>;
};

main.cpp:4:37: error: expected ‘;’ before ‘<’ token
main.cpp:4:37: error: expected unqualified-id before ‘<’ token

Interestingly, changing the line to this compiles so long as next isn't used:

  using next = typename foo<t>::next;

The error is very similar to this ill-formed code:

  using next<n> = int;

main.cpp:4:13: error: expected ‘=’ before ‘<’ token
main.cpp:4:13: error: expected type-specifier before ‘<’ token
main.cpp:4:13: error: expected ‘;’ before ‘<’ token
main.cpp:4:13: error: expected unqualified-id before ‘<’ token


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

end of thread, other threads:[~2011-11-25 12:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-18  7:49 [Bug c++/51203] New: Recursive alias templates not working pubby.8 at gmail dot com
2011-11-18  8:22 ` [Bug c++/51203] " pubby.8 at gmail dot com
2011-11-18  8:27 ` [Bug c++/51203] Recursive alias template specialization causes compiler segfault pubby.8 at gmail dot com
2011-11-18 19:17 ` [Bug c++/51203] [C++0x] " daniel.kruegler at googlemail dot com
2011-11-25 13:28 ` dodji 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).