source: trunk/src/gcc/gcc/testsuite/g++.old-deja/g++.jason/net.C@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 209 bytes
Line 
1// Bug: g++ doesn't instantiate function templates in instantiate_type.
2// Build don't link:
3
4template <class T> void fn (T t) { }
5template <class T> struct A {
6 void (*p)(T);
7 A() { p = fn; }
8};
9
10A<int> a;
Note: See TracBrowser for help on using the repository browser.