Previously, we assume only old.cc includes "old.h", which would
introduce incorrect fixes for the cases where old.h also includes #include "old.h"
Although it should not be occurred in real projects, clang-move should handle this.
Old.h:
class Foo {};
after moving to a new old.h:
class Foo {};
This check is always true?