blob: d0f762b8e11fd6e3be8fec7716d36d8fa0f091a2 [file] [log] [blame]
// PR c++/82085
// { dg-do compile { target c++14 } }
template <const char& V>
using char_sequence_t = int;
template <typename T>
constexpr char name_of_v = 'x';
template <typename T>
using type = char_sequence_t<name_of_v<T>>;