summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-neg2.C
blob: 71ba8f981a0d0adb4abc6d8013f777d556842a08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/88095
// Test class non-type template parameters for literal operator templates.
// Validate that non-literal class types are rejected.
// { dg-do compile { target c++2a } }

struct non_literal_class {
  constexpr non_literal_class(...) { }
  ~non_literal_class() {}
  // auto operator<=> (const non_literal_fixed_string&) = default;
};

template <non_literal_class> // { dg-error "11:is not a valid type for a template non-type parameter because it is not structural" }
int operator"" _udl();       // { dg-error "5:literal operator template .int operator\"\"_udl\\(\\). has invalid parameter list" }