#include <iostream>
using namespace std;
int main() {
int v = 5;
int c;
...
v *= v;
When rightclicking on v, I have "find declaration of v". Result is always: "Not found". Isn't it possible to find variable declarations? Am I expecting wrong?