https://github.com/localspook updated https://github.com/llvm/llvm-project/pull/197186
>From 0106cb06a5020500cab9d38ca6d2df7c0eef4634 Mon Sep 17 00:00:00 2001 From: Victor Chernyakin <[email protected]> Date: Mon, 11 May 2026 13:27:52 -0700 Subject: [PATCH] [clang][NFC] Mark CWG730 as implemented and add a test --- clang/test/CXX/drs/cwg7xx.cpp | 10 ++++++++++ clang/www/cxx_dr_status.html | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/clang/test/CXX/drs/cwg7xx.cpp b/clang/test/CXX/drs/cwg7xx.cpp index 39fcc53cae2ea..e891b289ec1b0 100644 --- a/clang/test/CXX/drs/cwg7xx.cpp +++ b/clang/test/CXX/drs/cwg7xx.cpp @@ -335,6 +335,16 @@ namespace cwg727 { // cwg727: partial Collision<int, int> c; // #cwg727-Collision-int-int } // namespace cwg727 +namespace cwg730 { // cwg730: 2.7 +struct A { + template <typename> struct S {}; + template <typename> void f() {} +}; + +template <> struct A::S<int> {}; +template <> void A::f<int>() {} +} // namespace cwg730 + namespace cwg777 { // cwg777: 3.7 #if __cplusplus >= 201103L template <typename... T> diff --git a/clang/www/cxx_dr_status.html b/clang/www/cxx_dr_status.html index 9f3cd07ea8a4e..3d6d5cfa2aed3 100755 --- a/clang/www/cxx_dr_status.html +++ b/clang/www/cxx_dr_status.html @@ -5139,7 +5139,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2> <td>[<a href="https://wg21.link/temp.expl.spec">temp.expl.spec</a>]</td> <td>CD2</td> <td>Explicit specializations of members of non-template classes</td> - <td class="unknown" align="center">Unknown</td> + <td class="full" align="center">Clang 2.7</td> </tr> <tr id="731"> <td><a href="https://cplusplus.github.io/CWG/issues/731.html">731</a></td> _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
