Clang Project
clang_source_code
/
test
/
Modules
/
Inputs
/
private3
/
public.h
1
#ifndef PUBLIC_H
2
#define PUBLIC_H
3
4
#include "private.h"
5
6
void pub() {
7
priv();
8
}
9
10
#endif
11
12