Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.bob / template4.C
blob13a150d5ec1498a85068618716a6987a72d60094
1 // { dg-do run  }
2 // prms-id: 10166
4 template <class A>
5 class B {
6   public:
7     int f() {
8       for(int x=0;x<10;x++) {
9         continue;
10         return 1;
11      }
12      return 0;
13    }
14   private:
15     A w;
18 int
19 main() {
20   B<int> c;
21   return c.f();