template <typename T> struct OutputType; int main() { OutputType<decltype(true)> a; }
Standard input is empty
prog.cpp: In function ‘int main()’:
prog.cpp:6:30: error: aggregate ‘OutputType<bool> a’ has incomplete type and cannot be defined
OutputType<decltype(true)> a;
^
Standard output is empty