(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
overload1.C
// { dg-do run  }
struct A {
  A operator+ (int) const { return *this; }
};

A operator+ (A, float);

int main ()
{
  A a;
  a + 1;
}