Rollup merge of #73023 - ayushmishra2005:remove_noisy_suggestion, r=davidtwco

Remove noisy suggestion of hash_map

Remove noisy suggestion of hash_map #72642

fixes #72642
This commit is contained in:
Dylan DPC 2020-06-10 11:03:45 +02:00 committed by GitHub
commit e1cd8c41a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 28 additions and 70 deletions

View file

@ -30,11 +30,10 @@ LL | use std::fmt::Result;
|
LL | use std::io::Result;
|
LL | use std::prelude::v1::Result;
|
LL | use std::result::Result;
|
and 1 other candidate
LL | use std::thread::Result;
|
error[E0573]: expected type, found variant `Result`
--> $DIR/issue-17546.rs:30:13
@ -48,11 +47,10 @@ LL | use std::fmt::Result;
|
LL | use std::io::Result;
|
LL | use std::prelude::v1::Result;
|
LL | use std::result::Result;
|
and 1 other candidate
LL | use std::thread::Result;
|
error[E0573]: expected type, found variant `NoResult`
--> $DIR/issue-17546.rs:35:15