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
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
const4.C
blob
6552ec6e9686154968c0fa27ea76f2ff67900201
1
// PR c++/48657
2
3
template<unsigned> struct A { typedef int T; };
4
5
template<unsigned> void f()
6
{
7
const unsigned D = 4;
8
A<D>::T t;
9
}