#include <iostream>
using namespace std;
template<int base, int x>
struct Power {
static constexpr int a = base * (Power<base, x - 1>::a);
};
template<int base>
struct Power<base, 0> {
static constexpr int a = 1;
};
///////////////////////////////// Мне не удалось создать здесь шаблон переменной.
template<int base, int x>
using power_v = typename Power<base, x>::a;
/////////////////////////////////
int main()
{
constexpr int y = power_v<3, 2>;
cout << y;
}