three.rs 74 B

12345678
  1. fn twice<T: Add<T>>(v: T) -> Add<T>::Output{
  2. v+v
  3. }
  4. fn main()
  5. {
  6. }