use std::ops::Add; fn dbl(x: T) -> ::Output where T: Copy + Add, UUU: Copy, //~^ ERROR cannot find type `UUU` in this scope { x + x } fn main() { println!("{}", dbl(3)); }