#include using namespace std; template using ptr = T*; ptr x = nullptr; int main() { int y = 7; x = &y; cout << *x << endl; }