Issue 159943
Summary libc++ deque range insertion appears to be broken
Labels libc++
Assignees
Reporter kamrann
    The following code somehow fails to insert anything into the `deque`.
```
auto d = std::deque< int >{};
auto id = [](auto x) {
    return x;
};
d.append_range(std::array{ 1 } | std::views::transform(id));
```
[Compiler Explorer](https://godbolt.org/z/ePbc8WWvh)

_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to