We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pub trait Trait1 { type T: Trait1; } pub trait Trait2: Trait1 { type U; }
Running hax json on this code causes it to hang forever. Removing type U; fixes the issue.
hax json
type U;
The text was updated successfully, but these errors were encountered:
This issue stems from the path_to function doing a depth-first search. Doing a breadth-first search instead solves this issue, will push a PR soon.
path_to
Note that switching to a breadth-first search is not solving issue #686.
Pushed #730
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Running
hax json
on this code causes it to hang forever. Removingtype U;
fixes the issue.The text was updated successfully, but these errors were encountered: