Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / init / ref6.C
blob50a9636036667b7474b1d0ebaf08e38c4997426f
1 struct B {
2   void g() { }
3 };
5 struct A {
6   void f() {
7     B &b = b;
8     b.g();
9   }
12 int main(void) { }