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++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ttp27.C
blob
f693690852be27fe8bef240d236d4a480080fadc
1
// PR c++/35678
2
3
template<typename T, T> struct A;
4
template<typename> struct B;
5
template<template<typename T, T> class U> struct B<U<char, 'h'> > {};
6
B<A<char,'h'> > x;