summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/defarg6.C
blob: f73c2746cec7843531119fb4b7ae477830781324 (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-do compile }

// Origin: Falk Hueffner <falk@debian.org>

// PR c++/13166: ICE default function argument for friend declaration.

namespace sc_dt {
    class sc_length_param {
	friend int compare_unsigned(int if_v_signed = 0) { return 0; }
    };
}