OSDN Git Service

PR c++/15759
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / constref1.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 by const reference.
8
9 void bar (const long&)
10 { }
11
12 void foo (int x)
13 {
14   bar ((long) x);
15 }
16