1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-23 00:28:46 +02:00

Convert other exercises that have assertions to test mode

This commit is contained in:
mo8it
2023-08-27 01:06:01 +02:00
parent 16936d95d1
commit 193b600382
4 changed files with 6 additions and 3 deletions

View File

@ -48,6 +48,7 @@ fn send_tx(q: Queue, tx: mpsc::Sender<u32>) -> () {
});
}
#[test]
fn main() {
let (tx, rx) = mpsc::channel();
let queue = Queue::new();