comparison gcc/testsuite/g++.dg/parse/defarg6.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
4 4
5 // PR c++/13166: ICE default function argument for friend declaration. 5 // PR c++/13166: ICE default function argument for friend declaration.
6 6
7 namespace sc_dt { 7 namespace sc_dt {
8 class sc_length_param { 8 class sc_length_param {
9 friend int compare_unsigned(int if_v_signed = 0) {} 9 friend int compare_unsigned(int if_v_signed = 0) { return 0; }
10 }; 10 };
11 } 11 }