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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ttp20.C
blob
0d1784c9f82ca74128c0e44198b98892443aa2b8
1
// PR c++/27424
2
// Bug: failing to substitute the 'int' into C
3
4
template<typename T> struct A
5
{
6
template<template<T> class> struct B {};
7
template<T> struct C;
8
B<C> b;
9
};
10
11
A<int> a;