view gcc/testsuite/g++.dg/cpp1z/class-deduction45.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// PR c++/82308
// { dg-do compile { target c++17 } }

template<typename, unsigned>
struct array {};

template <unsigned R>
class X {
public:
  using T = array<int, R>;

  enum class C : char { A, B };
  X(T bounds, C c = C::B) : t(bounds) {}

private:
  T t;
};

int main()
{
  array<int, 2> a;
  X    d{a};
  X<2> e{a};
}