modula2: Export all string to integral and fp number conversion functions
[official-gcc.git] / gcc / testsuite / g++.dg / inherit / error5.C
blobe38e106b14cbcef4f6525934a4c1e6848a9c1956
1 // PR c++/48489
3 struct Base{ };
5 struct Concrete : Base 
7   void setValue();
8 };
10 int main()
12   Concrete d;
13   d.Base::setValue(); // { dg-error "struct Base" }