Is there a clang-tidy check for replacing A::bar(); with just bar(); in the following example?
A::bar();
bar();
class A { void bar() { }; void