blob: 031f3d649123f830d0dceed6ecd09fe6b28cf905 [file] [log] [blame]
// Test that we can represent static_casts in template arg lists.
// Build don't link:
template <int I> struct A { };
template <class T> struct B {
A<static_cast<T>(3.14)> a;
};