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) {
}
Type: LanguageService
1. Incorrect
2. Correct