Skip to content

phlite: method selection on subtype of opaque #198

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

Open
lcnr opened this issue May 6, 2025 · 0 comments
Open

phlite: method selection on subtype of opaque #198

lcnr opened this issue May 6, 2025 · 0 comments
Assignees
Labels
from-crater A regression found via a crater run, not part of our test suite

Comments

@lcnr
Copy link
Contributor

lcnr commented May 6, 2025

https://crater-reports.s3.amazonaws.com/pr-133502-11/try%2328f13ad7c79d80decb5a3d54595a8b4105f397a3/gh/tomchaplin.phlite/log.txt

minimized

trait Trait {
    fn method(self);
}
impl<T> Trait for T {
    fn method(self) {}
}

fn recur(b: bool) -> impl Trait {
    if b {
        let local = recur(false);
        local.method();
    }
}
fn main() {}
@lcnr lcnr added the from-crater A regression found via a crater run, not part of our test suite label May 6, 2025
@lcnr lcnr removed the status in -Znext-solver=globally May 6, 2025
@lcnr lcnr moved this to unknown in -Znext-solver=globally May 6, 2025
@lcnr lcnr moved this from unknown to in progress in -Znext-solver=globally May 6, 2025
@lcnr lcnr self-assigned this May 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
from-crater A regression found via a crater run, not part of our test suite
Projects
Status: in progress
Development

No branches or pull requests

1 participant