Skip to content

Commit

Permalink
Update issue-48551.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Feb 28, 2018
1 parent 989134e commit 11eb83a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/run-pass/issue-48551.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Regression test for #48551. Covers a case where duplicate candidates
// arose during associated type projection.

use std::ops::{Mul, MulAssign};

pub trait ClosedMul<Right>: Sized + Mul<Right, Output = Self> + MulAssign<Right> {}
Expand Down

0 comments on commit 11eb83a

Please sign in to comment.