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 on by-value self method should be converted into proper error at type-check time #4776

Closed
pnkfelix opened this issue Feb 3, 2013 · 1 comment
Labels
A-type-system Area: Type system I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️

Comments

@pnkfelix
Copy link
Member

pnkfelix commented Feb 3, 2013

% rustc -v
rustc 0.6 (77ee858 2013-02-02 11:54:29 +0100)
host: x86_64-apple-darwin

% cat bug3.rs
pub trait Op<T> { fn call(self, T,T) -> T; }

impl<T> fn(T,T) -> T : Op<T> {
fn call(self, a:T, b:T) -> T { self(a,b) }
}

fn square<T : Copy>(x:T, op:Op<T>) -> T { op.call(x, x) }

fn main() {
let r = square(3, (|x:int,y:int|x*y) as Op::<int>); io::println(fmt!("%d", r))
}

% rustc bug3.rs
error: internal compiler error: methods with by-value self should not be called on objects
@Aatch
Copy link
Contributor

Aatch commented Apr 29, 2013

Changes to trait objects makes this not applicable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-type-system Area: Type system I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Projects
None yet
Development

No branches or pull requests

2 participants