repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
alias-decl-11.C
blob
54574337b20354774317461a1911551c34d47b1f
1
// { dg-do compile { target c++11 } }
2
3
namespace N
4
{
5
template <class T> using U = T*;
6
}
7
8
void f(N::U<int>) { blah; } // { dg-error "void f(N::U<int>)|not declared" }