repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
alias-decl-29.C
blob
f6cc6950ba7c03339c6b09a65d177bd9a6717f14
1
// Origin: PR c++/52343
2
// { dg-do compile { target c++11 } }
3
4
template<typename>
5
using A = int;
6
7
template<template<class> class>
8
struct B {};
9
10
B<A> b;