c++: P0847R7 (deducing this) - xobj lambdas. [PR102609]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / udlit-class-nttp-ctad.C
blobe9421bc40729d3362f897af8d9546ff62fd24f5b
1 // PR c++/88095
2 // Test class non-type template parameters for literal operator templates.
3 // Validate support for class template argument deduction.
4 // { dg-do compile { target c++20 } }
6 namespace std {
7 using size_t = decltype(sizeof(int));
10 template <typename CharT, std::size_t N>
11 struct fixed_string {
12   constexpr static std::size_t length = N;
13   constexpr fixed_string(...) { }
14   // auto operator<=> (const fixed_string&) = default;
16 template <typename CharT, std::size_t N>
17 fixed_string(const CharT (&str)[N]) -> fixed_string<CharT, N>;
19 template <fixed_string fs>
20 constexpr std::size_t operator"" _udl() {
21   return decltype(fs)::length;
24 static_assert("test"_udl == 5);