From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4483 invoked by alias); 14 Sep 2012 11:49:12 -0000 Received: (qmail 4471 invoked by uid 22791); 14 Sep 2012 11:49:09 -0000 X-SWARE-Spam-Status: No, hits=-4.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KHOP_THREADED X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 14 Sep 2012 11:48:56 +0000 From: "bangerth at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/54575] [4.8 Regression] ICE with std::vector::insert and -std=c++11 Date: Fri, 14 Sep 2012 11:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bangerth at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: paolo.carlini at oracle dot com X-Bugzilla-Target-Milestone: 4.8.0 X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-09/txt/msg01088.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54575 --- Comment #4 from Wolfgang Bangerth 2012-09-14 11:48:56 UTC --- Would this do? ;-) ...................................... template struct is_convertible { static const bool value = true; }; template struct enable_if { }; template<> struct enable_if { typedef int type; }; template using _RequireInputIter = typename enable_if::value>::type; template struct X { template> void insert(_InputIterator) {} }; template void foo() { X subdomain_indices; subdomain_indices.insert(0); } ......................................... gcc -std=c++11 -c x.ii x.ii: In function 'void foo()': x.ii:13:7: internal compiler error: tree check: expected class 'type', have 'exceptional' (error_mark) in strip_typedefs, at cp/tree.c:1215 typename = _RequireInputIter<_InputIterator>> ^ Please submit a full bug report, with preprocessed source if appropriate. See for instructions.