Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaCXX / warn-final-dtor-non-final-class.cpp
bloba96aa4436e8185f45e7f0d22db8dd4313e1f8ff8
1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s -Wfinal-dtor-non-final-class
2 // RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -Wfinal-dtor-non-final-class -fdiagnostics-parseable-fixits 2>&1 | FileCheck %s
4 class A {
5 ~A();
6 };
8 class B { // expected-note {{mark 'B' as 'final' to silence this warning}}
9 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:8-[[@LINE-1]]:8}:" final"
10 virtual ~B() final; // expected-warning {{class with destructor marked 'final' cannot be inherited from}}
13 class C final {
14 virtual ~C() final;