blob: d889024802f203c9134257ce37f33e4d2968a703 [file] [log] [blame]
//@ check-pass
// Minimization of issue #59502
trait MyTrait<T> {
type Output;
}
pub fn pow<T: MyTrait<T, Output = T>>(arg: T) -> T {
arg
}