PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / g++.dg / pr68831.C
blob2a354a57bb1284ec717ff9823c738ae7482bbf95
1 // PR c++/68831
2 // { dg-options "-Waddress" }
4 class DenseMap {
5 public:
6   ~DenseMap();
7 };
8 extern const DenseMap &GCMap;
9 void foo() { delete &GCMap; }