// { dg-do compile }

class A {};
class B : public A {};

template<const A* a> class C {};
template<const B* b> class D {};
template<B* b> class E {};

template<const B* b> void f(D<b> &, C<static_cast<const A*>(b)> &) {} // { dg-error "" "" { target { ! c++20 } } }
template<const B* b> void g(D<b> &, E<const_cast<B*>(b)> &) {} // { dg-error "" "" { target { ! c++11 } } }

B b;

int main()
{
  C<static_cast<const A*>(&b)> c; // { dg-error "" "" { target c++17_down } }
  D<&b> d;
  E<const_cast<B*>(&b)> e; // { dg-error "" "" { target { ! c++11 } } }
  f(d, c);		   // { dg-error "" "" { target { c++11 && { ! c++20 } } } }
  g(d, e);
}
