blob: 1eba279aa36746fb9341d2109a5b5bf02296328a [file] [log] [blame]
// { 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;
};