Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / private3 / public.h
blob2cf9d214d348406e9145786583a46109f2d686d7
1 #ifndef PUBLIC_H
2 #define PUBLIC_H
4 #include "private.h"
6 void pub() {
7 priv();
10 #endif