summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/std/format/format_string.cc
blob: 71c3d5d68f643ad0faf80c5d704c0ba1aacf667b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do compile { target c++20 } }

#include <format>

struct Str
{
  consteval operator std::string_view() const { return ""; }
  operator std::string_view() = delete;
};

// PR libstdc++/108024
static_assert( std::is_constructible_v<std::format_string<>, const Str&> );
static_assert( std::is_convertible_v<const Str&, std::format_string<>> );

constinit std::format_string<> s = Str();