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::g()} struct A(); } mod b { pub fn g() {super::a::f()} struct A(); }
Open this code snippet in the playground
Here the A types get renamed but their constructors do not:
A
type t_A_31610316 = | A : t_A_31610316 type t_A_213036179 = | A : t_A_213036179
which gives the following error:
* Error 47 at Playground.A.Cyclic_bundle_973328853.fst(8,23-8,24): - Duplicate top-level names [Playground.A.Cyclic_bundle_973328853.A] - Previously declared at Playground.A.Cyclic_bundle_973328853.fst(6,22-6,23)
The text was updated successfully, but these errors were encountered:
This was fixed by #1199
Sorry, something went wrong.
No branches or pull requests
Open this code snippet in the playground
Here the
A
types get renamed but their constructors do not:which gives the following error:
The text was updated successfully, but these errors were encountered: