Clang Project
clang_source_code
/
test
/
Modules
/
Inputs
/
template-default-args
/
c.h
1
BEGIN
2
template<typename T = int> struct F;
3
template<typename T, typename U> struct I;
4
END
5