Answer by Joey Adams for Generate the longest error message in C++
98 (necessary) characters:template<class T>struct W{T v;W(T v):v(v){}};template<class T>int f(T x){f(W<T>(x));}main(){f(0);}Produces the following error output in GCC...
View ArticleGenerate the longest error message in C++
Write a short program, that would generate the longest possible error message, in a standard C++ compiler (gcc, cl.exe, icc, or clang).The score of each entry is the number of characters in the longest...
View ArticleAnswer by Marvin Nimnull for Generate the longest error message in C++
Using partial specialization the error can be made arbitrarily long:template <int C, typename T> struct ERR { int operator()(int x) { return ERR<C-1,T>()(x); } };template <typename T>...
View ArticleAnswer by Nuclear for Generate the longest error message in C++
This code#include <sstream>namespace myns {//}#include <valarray>when compiled with gcc 11.3 with -std=c++2a produces an infinite complier error output (at least I waited for 5 minutes and...
View Article