Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / set-pure-crash / a.h
blobf52458e0daeba9da505279cae3e7a1d54b120296
1 #pragma once
3 struct Tag {};
5 template <typename T>
6 class Base {
7 public:
8 virtual void func() = 0;
9 };
11 Base<Tag> bar();