Fix use of inaccessible member in pr94052.C
authorChristophe Lyon <christophe.lyon@linaro.org>
Thu, 18 Jun 2020 15:25:18 +0000 (15:25 +0000)
committerChristophe Lyon <christophe.lyon@linaro.org>
Thu, 18 Jun 2020 15:27:21 +0000 (15:27 +0000)
The recent PR41437 fix exposed a latent use of an inaccessible member in
the below testcase.

gcc/testsuite/ChangeLog:

* g++.target/aarch64/pr94052.C: Give z::ad public access.

gcc/testsuite/g++.target/aarch64/pr94052.C

index d36c9bdc1588533db35eb3cbd2502034edd25452..b3bc3e24682d5674acffb173142d2bad3813b3bb 100644 (file)
@@ -26,7 +26,7 @@ public:
   d x();
   d y();
 };
-class z : ad<int> {};
+class z : public ad<int> {};
 struct ae {
   p af;
 };