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

             Bug #: 51225
           Summary: [c++0x] [4.7 Regression] ICE with invalid template
                    parameter
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassig...@gcc.gnu.org
        ReportedBy: reich...@gcc.gnu.org


The following invalid code snippet triggers an ICE on trunk when compiled with
"-std=c++0x":

==================================
template<int> struct A {};

template<typename> void foo()
{
  A<int(x)> a;
}
==================================

bug.cc: In function 'void foo()':
bug.cc:5:9: error: 'x' was not declared in this scope
bug.cc:5:11: internal compiler error: unexpected expression '(int)(<expression
error>)' of kind cast_expr
Please submit a full bug report, [etc.]

Reply via email to