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
Str is not implicitly copyable so using them often yields instantiating copy type parameter with a not implicitly copyable type warnings. An example of such is below:
fn parse_command_line(args: [str]/&)
{
let t = vec::tail(args); // tail requires a copyable T
io::println(#fmt["%?", t]);
}