-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Language ServicebugfixedCheck the Milestone for the release in which the fix is or will be available.Check the Milestone for the release in which the fix is or will be available.quick fix
Milestone
Description
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
insertonly 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:
Metadata
Metadata
Assignees
Labels
Language ServicebugfixedCheck the Milestone for the release in which the fix is or will be available.Check the Milestone for the release in which the fix is or will be available.quick fix
