• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 // PR5548
4 struct A {~A();};
a(const A * x)5 void a(const A* x) {
6   x->~A();
7 }
8