Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / other / constref2.C
blob5c82e2dbbdb9b95d12c9a35c01b23eb48dff368a
1 // { dg-do compile }
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Matt Austern 12 Sep 2002 <austern@apple.com>
6 // Make sure that we can pass a cast-expression as an argument that's
7 // passed to a function template by const reference.
9 template <class T>
10 void bar (const T&)
11 { }
13 void foo (int x)
15   bar ((long) x);