contract ContractA {
uint a;
function initialize(uint _a) public initializer {
a = _a;
}
}
If ContractA is being used as an implementation contract to generate clones, then each clone will set the value of "a" when initialize() is called. What happens if initialize() is called on the implementation contract after the clones have been created? Will this have any effect on the values stored in the clones?