#include <iostream> using namespace std; int main() { auto test = 13LUL; cout << test << endl; return 0; }
Standard input is empty
prog.cpp: In function 'int main()':
prog.cpp:5:14: error: unable to find numeric literal operator 'operator""LUL'
auto test = 13LUL;
^
Standard output is empty