Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / cond2.C
blob37bc1466a6f3b2c14e84368ab774114b6a03d188
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 struct S
6   S (int);
7   operator bool () const;
8 };
10 template <class T>
11 void f ()
13   if (const S &s = 3) {
14   }
17 template void f<int>();