Finds copy constructors where the constructor don't call
the constructor of the base class.
class X : public Copyable { X(const X& other) {}; // Copyable(other) is missing };
Also finds copy constructors where the base initializer
don't have parameter.
Wouldn't something like:
work?
I would prefer that rather than a new AST_MATCHER.
And later you could use ctorInit without parens.