OSDN Git Service

PR c++/29175
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / init / ref7.C
1 class hop
2 {
3 public:
4     hop operator* () const;
5 };
6 int main(void)
7 {
8     const hop &x = *x;
9 }