1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-06-02 08:06:11 +02:00

Add thread exercises to verify entrypoint

This commit is contained in:
Hirokazu Hata 2019-02-17 14:03:52 +09:00
parent 02ceb0ba8c
commit 5cd5be8847

View File

@ -45,6 +45,7 @@ pub fn verify() -> Result<(), ()> {
test("exercises/error_handling/errorsn.rs")?;
compile_only("exercises/error_handling/option1.rs")?;
test("exercises/error_handling/result1.rs")?;
compile_only("exercises/threads/threads1.rs")?;
Ok(())
}