OSDN Git Service

* lib/g++-dg.exp (g++-dg-test): Add "repo" option.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / incomplete2.C
1 // { dg-do assemble  }
2
3 struct A {
4   int foo(A a) { return a.bar(); }
5   int bar();
6   int n;
7 };