#include <stdio.h> int main(void) { auto x = -2147483648; auto y = -2147483647; }
Standard input is empty
prog.c: In function ‘main’:
prog.c:5:8: error: type defaults to ‘int’ in declaration of ‘x’ [-Werror=implicit-int]
auto x = -2147483648;
^
prog.c:6:8: error: type defaults to ‘int’ in declaration of ‘y’ [-Werror=implicit-int]
auto y = -2147483647;
^
cc1: all warnings being treated as errors
Standard output is empty