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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
decl1.C
blob
50eef08663b8f0b000447acea51765d38dc7c898
1
// PR c++/3882
2
// Verify that variable initialization can be
3
// self-referencing inside a template function.
4
5
int foo(int);
6
7
template <typename T>
8
void bar(const T&)
9
{
10
int i = foo(i);
11
}
12
13
void quus()
14
{
15
bar(0);
16
}