(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
parms3.C
// { dg-do assemble  }
// Test that we can represent static_casts in template arg lists.

template <int I> struct A { };

template <class T> struct B {
  A<static_cast<T>(3.14)> a;
};