(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
operator4.C
// PR c++/91819 - ICE with operator++ and enum.
// { dg-do compile }

enum Foo
{
  a,
  b
};

inline Foo operator++(Foo &f, int) 
{
  return f = (Foo)(f + 1);
}

int main()
{
  int count = 0;
  for (Foo f = a; f <= b; f++) {
    count++;
  }
  return count;
}