Skip to content
Snippets Groups Projects
Commit 19d2b412 authored by Russel Arbore's avatar Russel Arbore
Browse files

.

parent 33d22f27
No related branches found
No related tags found
1 merge request!97Handle loop vs. simple induced clones better
Pipeline #200907 passed
...@@ -27,6 +27,10 @@ fn main() { ...@@ -27,6 +27,10 @@ fn main() {
println!("{}", output); println!("{}", output);
assert_eq!(output, 39); assert_eq!(output, 39);
let output = tricky3_loop_implicit_clone(5, 7).await;
println!("{}", output);
assert_eq!(output, 0);
let output = no_implicit_clone(4).await; let output = no_implicit_clone(4).await;
println!("{}", output); println!("{}", output);
assert_eq!(output, 13); assert_eq!(output, 13);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment