blob: ac8cbd4834719e820148fd07c3adabee69fbc878 [file] [log] [blame]
template <int>
struct UnusedIntTemplateParam {};
template <class>
class Outer {
static const long SIZE = 1;
UnusedIntTemplateParam<SIZE> i;
};
class AutoIdVector {
Outer<int> ar;
};