1 // PR c++/58633
2 // { dg-do compile { target c++11 } }
3 
foo(int i)4 void foo(int i)
5 {
6   typedef int I;
7   decltype(i.I::~I())* p;
8 }
9