repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
other
/
constref2.C
blob
5c82e2dbbdb9b95d12c9a35c01b23eb48dff368a
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
}