Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / defarg6.C
blobf73c2746cec7843531119fb4b7ae477830781324
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) { return 0; }
10     };