1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-04-18 05:05:44 -04:00

Merge pull request from h-michael/verify

Add thread exercises to verify entrypoint
This commit is contained in:
komaeda 2019-02-17 12:38:39 +01:00 committed by GitHub
commit b199aa04ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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(())
}