|
| 1 | +// Copyright 2018 The Rust Project Developers. See the COPYRIGHT |
| 2 | +// file at the top-level directory of this distribution and at |
| 3 | +// http://rust-lang.org/COPYRIGHT. |
| 4 | +// |
| 5 | +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | +// option. This file may not be copied, modified, or distributed |
| 9 | +// except according to those terms. |
| 10 | + |
| 11 | +// Regression test for #48551. Covers a case where duplicate candidates |
| 12 | +// arose during associated type projection. |
| 13 | + |
| 14 | +use std::ops::{Mul, MulAssign}; |
| 15 | + |
| 16 | +pub trait ClosedMul<Right>: Sized + Mul<Right, Output = Self> + MulAssign<Right> {} |
| 17 | +impl<T, Right> ClosedMul<Right> for T |
| 18 | +where |
| 19 | + T: Mul<Right, Output = T> + MulAssign<Right>, |
| 20 | +{ |
| 21 | +} |
| 22 | + |
| 23 | +pub trait InnerSpace: ClosedMul<<Self as InnerSpace>::Real> { |
| 24 | + type Real; |
| 25 | +} |
| 26 | + |
| 27 | +pub trait FiniteDimVectorSpace: ClosedMul<<Self as FiniteDimVectorSpace>::Field> { |
| 28 | + type Field; |
| 29 | +} |
| 30 | + |
| 31 | +pub trait FiniteDimInnerSpace |
| 32 | + : InnerSpace + FiniteDimVectorSpace<Field = <Self as InnerSpace>::Real> { |
| 33 | +} |
| 34 | + |
| 35 | +pub trait EuclideanSpace: ClosedMul<<Self as EuclideanSpace>::Real> { |
| 36 | + type Coordinates: FiniteDimInnerSpace<Real = Self::Real> |
| 37 | + + Mul<Self::Real, Output = Self::Coordinates> |
| 38 | + + MulAssign<Self::Real>; |
| 39 | + |
| 40 | + type Real; |
| 41 | +} |
| 42 | + |
| 43 | +fn main() {} |
0 commit comments