[ERROR]
A user-defined constructor should be defined. This error occurs when a constructor should exist, but cannot be generated by the Compiler for the class.
class A {
const int i;
};
The compiler can not generate a constructor because he does not know the value for i.
Define a constructor for the class.