From fdcd71019941e76fc1b2a8ebf3aae112e2295d60 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Fri, 16 May 2014 23:16:06 +0000 Subject: [PATCH] Add missed file from r209046. llvm-svn: 209047 --- clang/test/Modules/Inputs/redecl-add-after-load-top.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 clang/test/Modules/Inputs/redecl-add-after-load-top.h diff --git a/clang/test/Modules/Inputs/redecl-add-after-load-top.h b/clang/test/Modules/Inputs/redecl-add-after-load-top.h new file mode 100644 index 000000000000..638fb013cd7e --- /dev/null +++ b/clang/test/Modules/Inputs/redecl-add-after-load-top.h @@ -0,0 +1,5 @@ +struct C { + struct A; + static const int variable; + static constexpr int function(); +};