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
mod a { pub fn f () { super::b::i() } pub mod aa { pub fn g(){} } } mod b { pub fn i() {super::a::f()} }
Open this code snippet in the playground
In the generated code for module a we have include Playground.A.Rec_bundle_927482861 {aa as aa}. This shouldn't be here and doesn't lax-check.
a
include Playground.A.Rec_bundle_927482861 {aa as aa}
The fix for this should be similar to #1030
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Open this code snippet in the playground
In the generated code for module
a
we haveinclude Playground.A.Rec_bundle_927482861 {aa as aa}
. This shouldn't be here and doesn't lax-check.The fix for this should be similar to #1030
The text was updated successfully, but these errors were encountered: