main.cpp: In function 'int main()': main.cpp:6:15: error: redeclaration of 'const int x' int const x { 456 }; // erreur : l'identifiant x est déjà utilisé ^ main.cpp:5:15: note: 'const int x' previously declared here int const x { 123 }; // x correspond à un entier ^