re PR c++/67184 (Missed optimization with C++11 final specifier)
[official-gcc.git] / gcc / testsuite / g++.dg / other / friend5.C
blobb0ec201fb38738d8cb50ecd4a3f6f4bf840e7381
1 /* PR c++/32111 */
2 /* This used to ICE. */
4 /* { dg-do compile } */
6 struct A
8   friend A::~A() {} /* { dg-error "implicitly friends of their class" } */
9 };