-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Closed
Labels
A-type-systemArea: Type systemArea: Type system
Milestone
Description
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]);
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-type-systemArea: Type systemArea: Type system