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
/
lookup
/
using15.C
blob
b5ca3a876f0e1ad94fbd8c96093131ac4ee49183
1
// PR c++/27933
2
// { dg-do compile }
3
4
template<int> struct A
5
{
6
int i;
7
A() { using i; } // { dg-error "nested-name-specifier|declared" }
8
};
9
10
A<0> a;