Skip to content

Commit cf0638c

Browse files
committed
Rollup merge of rust-lang#48610 - ishitatsuyuki:ishitatsuyuki-patch-1, r=nikomatsakis
Add regression test for rust-lang#48551 [Issue link](rust-lang#48551)
2 parents b812b77 + 11eb83a commit cf0638c

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

src/test/run-pass/issue-48551.rs

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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

Comments
 (0)