Add LTO and gold plugin to the CMake build. Linux-only, support for
[oota-llvm.git] / test / FrontendC++ / 2009-02-16-CtorNames-dbg.cpp
1 // RUN: %llvmgcc -S -g %s -o - | grep "\~A"
2 class A {
3   int i;
4 public:
5   A() { i = 0; }
6  ~A() { i = 42; }
7 };
8
9 A a;
10