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
/
lookup
/
scope-operator1.C
blob
fde36f01ead9c1c835faf18e7171ff30ba79d626
1
/* PR c++/250 */
2
/* { dg-do compile } */
3
4
template <class T> void Bar(T *p)
5
{
6
}
7
8
template <class T> class Foo
9
{
10
public:
11
Foo(T *p) { Bar(p); }
12
// The global scope operator wasn't respected in this case under gcc 3.0
13
void Bar(T *p) { ::Bar<T>(p); }
14
};
15
16
int main()
17
{
18
double* d;
19
Foo<double> f(d);
20
}