2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / defarg6.C
blob827b605b77eca670af45ca654ac5731220b68302
1 // { dg-do compile }
3 // Origin: Falk Hueffner <falk@debian.org>
5 // PR c++/13166: ICE default function argument for friend declaration.
7 namespace sc_dt {
8     class sc_length_param {
9         friend int compare_unsigned(int if_v_signed = 0) {}
10     };