Originally posted by @lh123 in #2743 (comment)
In 0.20.1. I thinks this problem still exits.
1. Step to reproduce:
- Add
#include <list>.
- A function named
insert only defined.
2. Code:
#include <list>//Need include list to reproduce
void insert(int a) {//Need function name is 'insert'
}
int main() {
insert(0);//Go to Declaration At here.
}
#include <list>
void otherName(int a) {
}
int main() {
otherName(0); //Go to Declaration is correct.
}
3. Screenshort:

Originally posted by @lh123 in #2743 (comment)
In 0.20.1. I thinks this problem still exits.
1. Step to reproduce:
2. Code:
3. Screenshort: