mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 19:16:05 +00:00

in isDefinedInClangModule() and assume that the incomplete definition is not defined in the module. This broke the -gmodules self host recently. rdar://problem/27894367 llvm-svn: 279485
9 lines
153 B
C++
9 lines
153 B
C++
/* -*- C++ -*- */
|
|
template <typename T> class Base {};
|
|
template <typename T> struct A : public Base<A<T>> {
|
|
void f();
|
|
};
|
|
|
|
class F {};
|
|
typedef A<F> AF;
|