Use code test.cpp // good void func(){} bad.h // bad void func(); Bug: Hover for "func" in test.cpp shows "bad" incorrectly. VS doesn't repro the bug.
Use code
test.cpp
// good
void func(){}
bad.h
// bad
void func();
Bug: Hover for "func" in test.cpp shows "bad" incorrectly. VS doesn't repro the bug.