No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / parse / register1.C
blob3be2e652502fa10675a9389875ec8a7d10fdb2cd
1 // PR c++/23839
3 class C
5   int i;
6 public:
7   C(int j) : i(j) { }
8   operator int() { return i; }
9 };
11 C f (register C x)
13   return x + 31;