Quantcast
Channel: Generate the longest error message in C++ - Code Golf Stack Exchange
Browsing all 24 articles
Browse latest View live

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 Article


Generate 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 Article


Answer 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 Article

Answer 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
Browsing all 24 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>