simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / inh-ctor35.C
blob0ec4393884897f6a8e97ff8e4a1012b1d5c5cf27
1 // PR c++/92590
2 // { dg-do compile { target c++11 } }
4 class Base {
5   protected:
6     Base();
7 };
9 class Derived : public Base {
10   public:
11     using Base::Base;
14 Derived d;