Author
anonymous
over 7 years ago
Language
Compiler
Options
Author
anonymous
over 7 years ago
$
prog.cc:7:9: warning: declaration shadows a variable in the global namespace [-Wshadow]
int x = x;
^
prog.cc:3:11: note: previous declaration is here
const int x = 5;
^
prog.cc:7:13: warning: variable 'x' is uninitialized when used within its own initialization [-Wuninitialized]
int x = x;
~ ^
prog.cc:3:11: warning: unused variable 'x' [-Wunused-const-variable]
const int x = 5;
^
3 warnings generated.
0
Exit Code:
0