llvm-for-llvmta/tools/clang/test/Modules/Inputs/template-specialization-vis.../c.h

7 lines
168 B
C
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
#ifndef C_H
#define C_H
template<typename T> struct S { int n; };
template<typename U> struct T<U>::S { int n; };
template<typename U> enum T<U>::E : int { e };
#endif