public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/53856] Default argument allowed on member defined outside of class template
Date: Wed, 04 Jul 2012 16:44:00 -0000	[thread overview]
Message-ID: <bug-53856-4-O744HsX3Mn@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-53856-4@http.gcc.gnu.org/bugzilla/>

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |rejects-valid
      Known to fail|                            |3.4.3, 4.1.2, 4.6.3, 4.8.0

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-07-04 16:43:53 UTC ---
Modifying the example to use a member template of a non-template, which I
believe *is* valid, gets rejected:

struct A
{
    template<typename T>
        struct B;
};

template<typename T = int>
struct A::B
{
    int i;
};

int main()
{
    A::B<int> b = { };
    return b.i;
}

bug.cc:8:11: error: default argument for template parameter for class enclosing
'struct A::B<T>'

This seems to be completely backwards, the invalid case is accepted and the
valid case rejected!

Comeau online rejects it for the same reason as the code in commnt 0 above:

"ComeauTest.c", line 6: error: a default template argument cannot be specified
on
          the declaration of a member of a class template outside of its class
  template<typename T = int>
                    ^

The wording is much better than G++'s, but I think the error is wrong, as it
talks about a member of a class template, whereas the code above is a member
template of a class. Not the same thing.

Clang++ and Solaris CC accept the modified version.


  reply	other threads:[~2012-07-04 16:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-04 16:39 [Bug c++/53856] New: " redi at gcc dot gnu.org
2012-07-04 16:44 ` redi at gcc dot gnu.org [this message]
2015-09-22 17:33 ` [Bug c++/53856] " paolo.carlini at oracle dot com
2015-10-05 21:44 ` paolo at gcc dot gnu.org
2015-10-05 21:44 ` paolo.carlini at oracle dot com

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-53856-4-O744HsX3Mn@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).