OSDN Git Service

Revert XFAIL removal.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / defarg9.C
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3
4 template <class T = int>
5 struct S 
6 {
7   void g () 
8     {
9     }
10   
11   friend void f (double) 
12     {
13     }
14 };
15