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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
other
/
scope1.C
blob
73b141bdf0b0e56dc964668590cd215fea133a48
1
// { dg-do compile }
2
3
// Copyright (C) 2000 Free Software Foundation, Inc.
4
// Contributed by Nathan Sidwell 30 Nov 2001 <nathan@nathan@codesourcery.com>
5
6
// PR 3381
7
8
namespace N {
9
template<class T>
10
class A { };
11
}
12
13
template class N::A<unsigned>; // this works (by itself)
14
template class ::N::A<int>; // but this doesn't