* g++.dg/template/repo3.C: New test.

From-SVN: r86578
This commit is contained in:
Adam Nemet 2004-08-25 20:52:41 +00:00 committed by Adam Nemet
parent 4185f1ce1a
commit ef79d4c27c
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-08-25 Adam Nemet <anemet@lnxw.com>
* g++.dg/template/repo3.C: New test.
2004-08-25 Roger Sayle <roger@eyesopen.com>
PR middle-end/16693

View File

@ -0,0 +1,7 @@
// { dg-options "-frepo -DF='a'" }
template <typename A, typename B> void f () {}
template <typename A, typename B> void g () { f<int,int>(); }
int main () { g<int,int>(); }
char c = F;