[LoongArch] Update lld20 release notes
[llvm-project.git] / clang / test / CXX / special / class.conv / class.conv.ctor / p1.cpp
blob5a45f7c358a33124ca82b421c6277a12ca7c9d5a
1 // RUN: %clang_cc1 -std=c++11 %s -verify
2 // expected-no-diagnostics
4 namespace PR13003 {
5 struct void_type
7 template <typename Arg0, typename... Args>
8 void_type(Arg0&&, Args&&...) { }
9 };
11 struct void_type2
13 template <typename... Args>
14 void_type2(Args&&...) { }
17 struct atom { };
19 void_type v1 = atom();
20 void_type2 v2 = atom();