blob: 423f1aeeceacdf969f52d4216f5142dfc8cf8c60 [file] [log] [blame]
// { dg-do compile }
// Copyright 2007 Free Software Foundation
// Contributed by Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
// PR C++ 34081 ICE
class Foo;
template < class Foo > class Bar
{
enum Status
{ OK, NO };
enum Status getStatus ()
{
return status;
}
Status status;
};