repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove outermost loop parameter.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
lookup3.C
blob
c96a0b0b981a938bd99bd6371407e21b530ebdbb
1
// PR c++/12397
2
3
struct foo { };
4
5
template <typename T> struct bar
6
{
7
bar(){}
8
int i;
9
bar (const bar<T>& foo) : i (foo.i) {}
10
};
11
12
int main()
13
{
14
bar<int> b1;
15
bar<int> b2(b1);
16
}