llvm-for-llvmta/tools/clang/test/Modules/Inputs/DebugNestedA.h

9 lines
153 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
/* -*- C++ -*- */
template <typename T> class Base {};
template <typename T> struct A : public Base<A<T>> {
void f();
};
class F {};
typedef A<F> AF;