Files
llvm-project/clang/test/Modules/Inputs/DebugNestedB.h
Adrian Prantl a72972b985 Module debug info: Don't assert when encountering an incomplete definition
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
2016-08-22 22:23:58 +00:00

8 lines
94 B
C++

/* -*- C++ -*- */
#include "DebugNestedA.h"
class C {
void run(AF &af) {
af.f();
}
};