summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/defarg9.C
blob: 2f0dbba8f602966e30568f2948ab1631708d7b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T = int>
struct S 
{
  void g () 
    {
    }
  
  friend void f (double) 
    {
    }
};