[clang] [libcxx] [libc++][Clang] Added explanation why is_constructible evaluated to false. Updated the diagnostics checks in libc++ tests. (PR #144220)

Ross Kirsling via cfe-commits cfe-commits at lists.llvm.org
Wed Jun 18 16:25:36 PDT 2025


================
@@ -1767,7 +1767,8 @@ def note_unsatisfied_trait
     : Note<"%0 is not %enum_select<TraitName>{"
            "%TriviallyRelocatable{trivially relocatable}|"
            "%Replaceable{replaceable}|"
-           "%TriviallyCopyable{trivially copyable}"
+           "%TriviallyCopyable{trivially copyable}|"
+           "%Constructible{constructible with provided types}"
----------------
rkirsling wrote:

Looks like this is no longer used in the latest version of the patch?

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


More information about the cfe-commits mailing list