[ERROR]
The specified identifier was declared as const but was not initialized.
const int i; // error
extern const int i; // ok
Initialize the constant object, or remove the const specifier from the declaration.