blob: ce51556dd418b4cac6a207a38cbb466aa55c04d9 [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
}