blob: ac8cbd4834719e820148fd07c3adabee69fbc878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
template <int>
struct UnusedIntTemplateParam {};
template <class>
class Outer {
static const long SIZE = 1;
UnusedIntTemplateParam<SIZE> i;
};
class AutoIdVector {
Outer<int> ar;
};
|