[clang] [Clang] [Sema] Support matrix types in pseudo-destructor expressions (PR #117483)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Dec 4 00:51:37 PST 2024
================
@@ -0,0 +1,19 @@
+// RUN: %clang_cc1 -fsyntax-only -fenable-matrix -std=c++11 -verify %s
+// expected-no-diagnostics
+
+template <typename T>
+void f() {
+ T().~T();
+}
----------------
Sirraide wrote:
Added a test for this too
https://github.com/llvm/llvm-project/pull/117483
More information about the cfe-commits
mailing list