#include <iostream>
using namespace std;
template <class T, int I, class... Args>
struct CondConstructable {
typedef char type[I];
static const int a = 555;
};
template <class T, int I, class A, class... Args>
struct CondConstructable<T, I, A, Args...> {
typedef char VT[I];
static VT& test(T);
static typename CondConstructable<T, I + 1, Args...>::type& test(...);
typedef decltype(test((A*)(0))) type;
static const int value = sizeof(type);
static const int b = 555;
};
int main() {
int MatchIndex = CondConstructable<int*, 0, float>::b;
cout << MatchIndex << endl;
return 0;
}