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

Type inference failure when cloning #19855

Closed
sfackler opened this issue Dec 15, 2014 · 2 comments
Closed

Type inference failure when cloning #19855

sfackler opened this issue Dec 15, 2014 · 2 comments
Labels
A-type-system Area: Type system

Comments

@sfackler
Copy link
Member

fn foo() -> String {
    let x = std::default::Default::default();
    drop(x.clone());
    x
}

fn main() {}
test.rs:3:10: 3:19 error: the type of this value must be known in this context
test.rs:3     drop(x.clone());
                   ^~~~~~~~~
error: aborting due to previous error

cc @nikomatsakis

@sfackler sfackler added the A-type-system Area: Type system label Dec 15, 2014
@michaelsproul
Copy link
Contributor

Probably related? #19851 and #19853.

@nikomatsakis
Copy link
Contributor

This is expected behavior. When doing a method call, we must know the type at that point in type checking. Here, the constraint on the type of x only arises at the point of the return. It'd be nice to fix this but it's not on the current plans (and requires a lot of work).

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
Projects
None yet
Development

No branches or pull requests

3 participants