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

ICE with default methods of the same name on the one type #8808

Closed
huonw opened this issue Aug 28, 2013 · 0 comments
Closed

ICE with default methods of the same name on the one type #8808

huonw opened this issue Aug 28, 2013 · 0 comments
Labels
I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️

Comments

@huonw
Copy link
Member

huonw commented Aug 28, 2013

trait Foo { fn method(&self) {} }
trait Bar { fn method(&self) {} }

impl Foo for uint {}
impl Bar for uint {}

fn main() {
    1u.method();
}

This happens as long as one version of method is a non-overrided default method.

doubletrait.rs:8:4: 8:16 error: multiple applicable methods in scope
doubletrait.rs:8     1u.method();
                     ^~~~~~~~~~~~
task <unnamed> failed at 'report_static_candidate: bad item {crate: 0, node: 53}', /home/huon/rust/src/librustc/middle/typeck/check/method.rs:1306
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug
note: try running with RUST_LOG=rustc=1 to get further details and report the results to github.com/mozilla/rust/issues
task <unnamed> failed at 'explicit failure', /home/huon/rust/src/librustc/rustc.rs:377
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant