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

Bundle bug with recursion #1186

Open
W95Psp opened this issue Dec 12, 2024 · 0 comments
Open

Bundle bug with recursion #1186

W95Psp opened this issue Dec 12, 2024 · 0 comments
Labels
needs-triage Mark an issue that needs triage: add label, add more contents

Comments

@W95Psp
Copy link
Collaborator

W95Psp commented Dec 12, 2024

trait T { fn f(); }

pub mod a {
    impl super::T for u8{ fn f(){g()}}
    pub fn g(){super::b::g()}
}

pub mod b {
    impl super::T for i8 { fn f(){}}
    pub fn g(){super::a::g()}
}

Open this code snippet in the playground

@franziskuskiefer franziskuskiefer added the needs-triage Mark an issue that needs triage: add label, add more contents label Jan 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-triage Mark an issue that needs triage: add label, add more contents
Projects
None yet
Development

No branches or pull requests

2 participants