move 28 tests

This commit is contained in:
Kivooeo
2025-07-18 22:00:30 +05:00
parent a955f1cd09
commit 9f38ca97ea
28 changed files with 0 additions and 0 deletions
@@ -0,0 +1,14 @@
//@ check-pass
#![allow(dead_code)]
#[derive(Debug)]
enum Foo<'s> {
V(&'s str)
}
fn f(arr: &[&Foo]) {
for &f in arr {
println!("{:?}", f);
}
}
fn main() {}