Fix use of inaccessible member in pr85503.C [PR95716]

The recent PR41437 fix exposed a latent use of an inaccessible member in
the below testcase.

gcc/testsuite/ChangeLog:

	PR testsuite/95716
	* g++.dg/ext/pr85503.C: Give ai::cv public access.
This commit is contained in:
Patrick Palka 2020-06-17 09:09:53 -04:00
parent d0909f5858
commit 4d2b0866d7

View File

@ -138,6 +138,7 @@ struct ad< ai< cr, ag, ah, cu, ct, cw > > {
};
template < typename, int ag, int ah, int, int, int >
class ai : public af< ai< double, ag, ah > > {
public:
typedef ai cv;
};
template < typename bk, typename ce, typename cf >