-
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 fixregressionA bug that didn't exist in a previous releaseA bug that didn't exist in a previous release
Milestone
Description
Type: LanguageService
- C/C++ Extension Version: 0.20.0
1. Incorrect
void insert(int a) {
}
int main() {
insert(0);// IntelliSense-based Go to Declaration give incorrect result in here.
}2. Correct
void insert(int a);
int main() {
insert(0);// IntelliSense-based Go to Declaration give correct result in here.
}
void insert(int a) {
}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 fixregressionA bug that didn't exist in a previous releaseA bug that didn't exist in a previous release