Clang Project
clang_source_code
/
test
/
Modules
/
Inputs
/
template-specialization-visibility
/
e.h
1
#ifndef E_H
2
#define E_H
3
#include "c.h"
4
template struct S<char>;
5
template struct T<char>;
6
#endif
7