Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ext / namedret1.C
blob64df8d1dc7792f5701302cda3988a30e05e08008
1 // Special g++ Options: -Wno-deprecated
3 int f(int x) return y(x) { }
5 extern "C" void abort ();
7 int main()
9   if (f(1) != 1 || f(2) != 2 || f(3) != 3)
10     abort ();
11   return 0;