FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.dg / template / decl1.C
blob50eef08663b8f0b000447acea51765d38dc7c898
1 // PR c++/3882
2 // Verify that variable initialization can be
3 // self-referencing inside a template function.
5 int foo(int);
7 template <typename T>
8 void bar(const T&)
10   int i = foo(i);
13 void quus()
15   bar(0);