template<class T> struct TD; int main() { int i = 0; TD<decltype(++i)> td; }
Standard input is empty
prog.cpp: In function 'int main()':
prog.cpp:6:23: error: aggregate 'TD<int&> td' has incomplete type and cannot be defined
TD<decltype(++i)> td;
^
Standard output is empty