Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / parms3.C
blob1eba279aa36746fb9341d2109a5b5bf02296328a
1 // { dg-do assemble  }
2 // Test that we can represent static_casts in template arg lists.
4 template <int I> struct A { };
6 template <class T> struct B {
7   A<static_cast<T>(3.14)> a;
8 };