2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / other / constref1.C
blob900a07de39c3a02016e31cd8c7cb13305416cfd2
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 by const reference.
9 void bar (const long&)
10 { }
12 void foo (int x)
14   bar ((long) x);