2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr78469.C
blobdd5ff84bfe4381d9da06e7b28bd3d936baadf6b1
1 // { dg-do compile { target c++11 } }
2 // PR78469, bogus error about inaccessible dtor.
4 struct no_destr {
5   no_destr() = default;
7 protected:
8   ~no_destr() = default;
9 };
11 void *Foo ()
13   return new no_destr ();