OSDN Git Service

Some raw string changes from N3077
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / constref2.C
1 // { dg-do compile }
2
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Matt Austern 12 Sep 2002 <austern@apple.com>
5
6 // Make sure that we can pass a cast-expression as an argument that's
7 // passed to a function template by const reference.
8
9 template <class T>
10 void bar (const T&)
11 { }
12
13 void foo (int x)
14 {
15   bar ((long) x);
16 }