We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8be9fd5 commit ff22196Copy full SHA for ff22196
libcxx/test/std/input.output/syncstream/syncbuf/syncstream.syncbuf.cons/cons.default.pass.cpp
@@ -25,8 +25,15 @@
25
#include "constexpr_char_traits.h"
26
#include "test_allocator.h"
27
28
+template <class CharT>
29
+std::basic_syncbuf<CharT> lwg3253_default_constructor_is_not_explicit() {
30
+ return {};
31
+}
32
+
33
template <class CharT>
34
void test() {
35
+ lwg3253_default_constructor_is_not_explicit<CharT>();
36
37
{
38
using Buf = std::basic_syncbuf<CharT>;
39
static_assert(std::default_initializable<Buf>);
0 commit comments