Skip to content

Commit 6260bd1

Browse files
comment test to explain what it does
1 parent e81c66b commit 6260bd1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libcxx/test/std/ranges/range.adaptors/range.concat/constraints.verify.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
#include <vector>
1414
#include "test_macros.h"
1515

16+
// This tests https://cplusplus.github.io/LWG/issue4082
17+
// views::concat(r) is well-formed when r is an output_range
18+
1619
int main(int, char**) {
1720
std::vector<int> v{1, 2, 3};
1821
auto r = std::views::counted(std::back_inserter(v), 3);

0 commit comments

Comments
 (0)