[clang] [Clang] Improve support for expression messages in `static_assert` (PR #73234)

Vlad Serebrennikov via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 27 09:22:35 PST 2023


================
@@ -0,0 +1,30 @@
+// RUN: %clang_cc1 -std=c++2c -verify %s
+
+namespace dr2798 { // dr2798: 17 drafting
+#if __cpp_static_assert >= 202306
+struct string {
+    constexpr string() {
+        data_ = new char[6]();
+        __builtin_memcpy(data_, "Hello", 5);
+        data_[5] = 0;
+    }
+    constexpr ~string() {
+        delete[] data_;
+    }
+    constexpr unsigned long size() const {
+        return 5;
+    };
+    constexpr const char* data() const {
+        return data_;
+    }
+
+    char* data_;
+};
+struct X {
+    string s;
+};
+consteval X f() { return {}; }
+
+static_assert(false, f().s); // expected-error {{static assertion failed: Hello}}
----------------
Endilll wrote:

A PR I took a look at after this one illustrates the point above: https://github.com/llvm/llvm-project/pull/73493#discussion_r1406496791

https://github.com/llvm/llvm-project/pull/73234


More information about the cfe-commits mailing list