diff options
| author | est31 <MTest31@outlook.com> | 2017-05-02 06:35:36 +0200 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2017-05-02 06:35:36 +0200 |
| commit | 14bbd0a5a3722bdcb4c5f36d81097e1fb992add3 (patch) | |
| tree | bf980f810ecad89856c79a0bf949b083e2846d82 /src/libcore | |
| parent | d290849a233bb2b06b01167c242b3886d2cf8681 (diff) | |
| download | rust-14bbd0a5a3722bdcb4c5f36d81097e1fb992add3.tar.gz rust-14bbd0a5a3722bdcb4c5f36d81097e1fb992add3.zip | |
Address review
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/convert.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/convert.rs b/src/libcore/convert.rs index f5dc38e8aab..21c75ad3395 100644 --- a/src/libcore/convert.rs +++ b/src/libcore/convert.rs @@ -276,7 +276,7 @@ pub trait Into<T>: Sized { pub trait From<T>: Sized { /// Performs the conversion. #[stable(feature = "rust1", since = "1.0.0")] - fn from(t: T) -> Self; + fn from(_: T) -> Self; } /// An attempted conversion that consumes `self`, which may or may not be |
