blob: f6e125dbfb7633245774ec28f2e1d53246d69be7 [file] [log] [blame]
// Build don't link:
template <class T>
struct S
{
static const T t = 3; // ERROR - initializing non-integral type
};
double d = S<double>::t;