public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/61172] New: C++11: ICE with invalid call to template class
@ 2014-05-13 12:57 tobi at gcc dot gnu.org
  2014-05-13 13:08 ` [Bug c++/61172] " tobi at gcc dot gnu.org
  2014-05-13 13:22 ` tobi at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: tobi at gcc dot gnu.org @ 2014-05-13 12:57 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 61172
           Summary: C++11: ICE with invalid call to template class
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tobi at gcc dot gnu.org

I'm seeing this bug with all g++-4.7 I have access to.  There seems to be no
duplicate in bugzilla, even though there are a few similar bugs they are fixed
in 4.7.0 the latest.  Even if this is fixed in trunk (I cannot check this right
now), adding a testcase may be sensible:

$ cat t.cc
#include <vector>

struct foobar {
    int a;
};

int main(){
    std::vector<foobar> foo;
    //Should fail: foobar has no constructor with one argument
    foo.emplace_back(0);
}
$ g++ t.cc
t.cc: In function 'int main()':
t.cc:10:9: error: 'class std::vector<foobar>' has no member named
'emplace_back'
$ g++ --std=c++11 t.cc
'
Internal compiler error: Error reporting routines re-entered.
Please submit a full bug report,
with preprocessed source if appropriate.
See <https://trac.macports.org/newticket> for instructions.
tobi@tobias-schluters-computer tmp$


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

end of thread, other threads:[~2014-05-13 13:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-13 12:57 [Bug c++/61172] New: C++11: ICE with invalid call to template class tobi at gcc dot gnu.org
2014-05-13 13:08 ` [Bug c++/61172] " tobi at gcc dot gnu.org
2014-05-13 13:22 ` tobi 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).