]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGenCXX/PR4890-debug-info-dtor.cpp
Update clang to r94309.
[FreeBSD/FreeBSD.git] / test / CodeGenCXX / PR4890-debug-info-dtor.cpp
1 // RUN: %clang_cc1 -emit-llvm-only -g %s
2 struct X {
3   ~X();
4 };
5
6 X::~X() { }