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
expand: Fix up expansion of VIEW_CONVERT_EXPR to BITINT_TYPE [PR117354]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic146.C
blob
0c91db581d151deec986dbf306eb4707e54e35bf
1
// PR c++/58606
2
// { dg-require-effective-target c++11 }
3
4
template<int&...I> struct A
5
{
6
template<typename> struct B;
7
8
template<typename T> struct B<T*> {};
9
};