You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fnfoo() -> String{let x = std::default::Default::default();drop(x.clone());
x
}fnmain(){}
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
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).
cc @nikomatsakis
The text was updated successfully, but these errors were encountered: