diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2018-02-28 13:04:12 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-28 13:04:12 -0500 |
| commit | 11eb83ae749f037997ad6bf0841daa69d625f066 (patch) | |
| tree | 80be9bd6190f792473ee078da4c75fc2554fc2ab /src | |
| parent | 989134e71bd01eaa9baf1e8e4654da3258fef014 (diff) | |
| download | rust-11eb83ae749f037997ad6bf0841daa69d625f066.tar.gz rust-11eb83ae749f037997ad6bf0841daa69d625f066.zip | |
Update issue-48551.rs
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/run-pass/issue-48551.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-48551.rs b/src/test/run-pass/issue-48551.rs index 61146cd087b..93bddbc5335 100644 --- a/src/test/run-pass/issue-48551.rs +++ b/src/test/run-pass/issue-48551.rs @@ -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> {} |
