2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr62121.C
blobde1196a62e196ce10d2c93288f8ec18c8f03b9c5
1 // { dg-do compile }
2 class A
4   virtual double operator()();
5 };
6 class B : A
8 public:
9   double operator()();
11 extern B a[];
12 int b = a[0]();