Skip to content

arc1.rs has an extraneous import #2258

Closed
@mlhetland

Description

@mlhetland

In arc1.rs, the following lines appear:

// Don't change the lines below.
#![forbid(unused_imports)]
use core::num;
use std::{sync::Arc, thread};

As far as I could see, there is no relevant way of using core::num. And in the solution file, this has, in fact, been modified to the following:

// Don't change the lines below.
#![forbid(unused_imports)]
use std::{sync::Arc, thread};

So I'm assuming use core::num; should be removed from the exercise?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions