1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-04-26 07:35:04 +02:00

fix(arc1): Passively introduce attributes (#429)

Ensure that std::sync::Arc is actually used, as this exercise can be compiled using things already learnt in previous exercises.
This commit is contained in:
Alexx Roche 2020-06-14 12:15:35 +02:00 committed by GitHub
parent c6295ade33
commit 113cdae2d4
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,7 @@
// I AM NOT DONE
#![forbid(unused_imports)] // Do not change this, (or the next) line.
use std::sync::Arc;
use std::thread;