Closed
Bug 1835433
Opened 2 years ago
Closed 2 years ago
Navigation to member of nested enum from inside template
Categories
(Webtools :: Searchfox, defect)
Webtools
Searchfox
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1621789
People
(Reporter: botond, Assigned: botond)
Details
Steps to reproduce
Have Searchfox index the following code:
template <typename>
struct Foo {
enum class E {
Waldo,
};
void Bar() {
E::Waldo;
}
};
Expected results
Navigation from the use of Waldo goes to the definition.
Actual results
No navigation is offered at the use.
| Assignee | ||
Comment 1•2 years ago
|
||
Forgot that I already filed bug 1621789 for this, I'll move the reduced testcase over there.
You need to log in
before you can comment on or make changes to this bug.
Description
•