This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/23044] New: [4.0/4.1 Regression] ICE on vaild code
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 24 Jul 2005 07:22:11 -0000
- Subject: [Bug c++/23044] New: [4.0/4.1 Regression] ICE on vaild code
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
This is reduced from PR 14719/18835:
struct no_context {
template< class Event > void no_function( const Event & );
};
template< class Event, class Destination, class TransitionContext = no_context,
void ( TransitionContext::*pTransitionAction )( const Event & ) = &no_context::no_function< Event > >
struct transition
{
struct EvFlipBit {};
struct BitState{};
template< class BitNo, class StateNo > struct FlipTransition {
typedef transition<EvFlipBit, BitState> type;
};
};
--
Summary: [4.0/4.1 Regression] ICE on vaild code
Product: gcc
Version: 4.1.0
Status: UNCONFIRMED
Keywords: ice-on-valid-code
Severity: normal
Priority: P2
Component: c++
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: pinskia at gcc dot gnu dot org
CC: gcc-bugs at gcc dot gnu dot org
OtherBugsDependingO 18835
nThis:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23044