Skip to content
Snippets Groups Projects

Handle loop vs. simple induced clones better

Merged rarbore2 requested to merge clone_detection7 into main
1 file
+ 4
0
Compare changes
  • Side-by-side
  • Inline
@@ -27,6 +27,10 @@ fn main() {
println!("{}", output);
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;
println!("{}", output);
assert_eq!(output, 13);
Loading