Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libmudflap / testsuite / libmudflap.c++ / pass58-frag.cxx
blob96da05fca07baea80042657b8b2d162475af554e
1 // PR 19319
2 struct k {
3 int data;
4 k(int j): data(j) {}
5 };
6 k make_k () { return k(1); }
8 int main ()
10 k foo = make_k ();
11 return 0;