yes,I have try it in ccbranch.it work well
for example :
test codes:
class qq
{
qq() {}
int x;
int y;
};
q|
when you edit in the positon "|", cc give you codecompletion suggestion box, and you press enter,in the before, it wil auto add the "()" ,but now it will not after applied the modifation.
The reason is :
the class name is the same to the class's construtor,when we generate the suggestion list,we think class construtor is funciton,but actually it maybe is class.and that is why you type class ,but the "()" is added automatically.