view gcc/testsuite/g++.dg/cpp2a/nontype-class5.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

// Example from P0732
// { dg-do compile { target c++2a } }

template<class T, T p> class X {
  /* ... */
};

struct A {
  constexpr A(const char*) {}
  // auto operator<=> (const A&) = default;
};
X<A, "Pyrophoricity"> x3; // OK: string literal is a constructor argument to A