Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Heuristic resolution does not find member of type referenced via DependentNameType #1671

Closed
HighCommander4 opened this issue Jun 11, 2023 · 1 comment
Assignees

Comments

@HighCommander4
Copy link

In the following code:

template <typename T>
struct Waldo {
  void find();
};

template <typename T>
struct MetaWaldo {
  using Type = Waldo<T>;
};

template <typename T>
void foo(typename MetaWaldo<T>::Type w) {
  w.find();
}

go-to-definition on the use of find() does not produce Waldo::find().

(Originally posted at #1663 (comment).)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant