[ORC] Fail materialization in tasks that are destroyed before running.
[llvm-project.git] / clang / test / Modules / Inputs / redecl-templates / a.h
blob205483fc01f12404b4d92426910f84f7944d826b
1 template<int N> struct A;
2 template<> struct A<1>;
4 template<int N> constexpr void f();
5 template<> constexpr void f<1>();
7 template<int N> extern int v;
8 template<> int v<1>;