turn off test
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 8s

This commit is contained in:
sfja 2026-04-16 13:37:24 +02:00
parent 6162c8e042
commit 728148ae42

View File

@ -0,0 +1,18 @@
fn identity<T>(v: T) -> T {
return v;
}
fn main()
{
let a = identity::<i32>(123);
// expect: 123
print(a);
let b = identity("abc");
// expect: abc
print(b);
}
// vim: syntax=rust commentstring=//\ %s