[libcxx-commits] [libcxx] [libc++] Fix the mdspan ElementType complete object type mandate (PR #191703)
via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Apr 12 08:01:39 PDT 2026
================
@@ -23,6 +23,19 @@ class AbstractClass {
virtual void method() = 0;
};
+struct BadAccessor {
+ using offset_policy = BadAccessor;
+ using element_type = void;
+ using reference = void;
+ using data_handle_type = element_type*;
+ reference access(data_handle_type, std::size_t) const;
+};
+
+int incomplete_type() {
----------------
eiytoq wrote:
Done, covered those here as well.
https://github.com/llvm/llvm-project/pull/191703
More information about the libcxx-commits
mailing list