-
Notifications
You must be signed in to change notification settings - Fork 13.4k
resolve issue with reexports #5693
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
Whoops just realized the reference from that pull request was a typo, disregard that... |
What is going on here is that bar.rs is getting compiled twice, once for each time it is referenced with "mod bar;". Is this as intended? |
OK, I think this is working as intended. |
Yes, this is doing what it was supposed to do. The |
or_fn_call: ignore nullary associated const fns The fix in rust-lang#5889 was missing associated functions. changelog: Ignore also `const fn` methods in [`or_fun_call`] Fixes rust-lang#5693
As far as I can tell,
foo::baz::bar::MyType
is nonsense here.The text was updated successfully, but these errors were encountered: