2018-10-23 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr52841.C
blobf6467f8f72c174525b73d2e533fb61ff29b7b0b1
1 // { dg-do compile }
3 struct Solvable;
4 namespace sat
6   class Solvable
7     {
8   public:
9       typedef bool bool_type;
10     };
13 class Resolvable : public sat::Solvable
15 public:
16   using sat::Solvable::bool_type;