diff options
Diffstat (limited to 'clang/test/Modules/Inputs/redecl-merge-right.h')
-rw-r--r-- | clang/test/Modules/Inputs/redecl-merge-right.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/redecl-merge-right.h b/clang/test/Modules/Inputs/redecl-merge-right.h index de7aa08cfb2..695327674fb 100644 --- a/clang/test/Modules/Inputs/redecl-merge-right.h +++ b/clang/test/Modules/Inputs/redecl-merge-right.h @@ -83,6 +83,12 @@ template<typename T> class Vector { public: void push_back(const T&); }; + +template<typename T> class List; +template<> class List<bool> { +public: + void push_back(int); +}; #endif int ONE; |