You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
voidmain() {
A.named().foo();
A.named().foo();
}
classA {
A.named() {} // Ctrl+Click on named does nothingvoidfoo() {} // Ctrl+Click on foo finds the references above
}
It seems like VS Code may be sending requests for both definition+references in the case that works, but only definition in the case that doesn't (perhaps the response to definition being empty is suppressing the later?).