rust/tests/ui/implicit_hasher.stderr

154 lines
6.7 KiB
Text
Raw Normal View History

2017-10-21 03:07:24 +02:00
error: impl for `HashMap` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:16:35
2017-10-05 16:57:31 +02:00
|
2018-12-27 16:57:55 +01:00
LL | impl<K: Hash + Eq, V> Foo<i8> for HashMap<K, V> {
2017-10-05 16:57:31 +02:00
| ^^^^^^^^^^^^^
|
2020-04-03 04:09:30 +02:00
note: the lint level is defined here
--> $DIR/implicit_hasher.rs:2:9
|
LL | #![deny(clippy::implicit_hasher)]
| ^^^^^^^^^^^^^^^^^^^^^^^
2017-10-05 16:57:31 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | impl<K: Hash + Eq, V, S: ::std::hash::BuildHasher + Default> Foo<i8> for HashMap<K, V, S> {
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^
2017-10-11 16:08:36 +02:00
help: ...and use generic constructor
|
2018-12-27 16:57:55 +01:00
LL | (HashMap::default(), HashMap::with_capacity_and_hasher(10, Default::default()))
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-05 16:57:31 +02:00
2017-10-21 03:07:24 +02:00
error: impl for `HashMap` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:25:36
2017-10-05 16:57:31 +02:00
|
2018-12-27 16:57:55 +01:00
LL | impl<K: Hash + Eq, V> Foo<i8> for (HashMap<K, V>,) {
2017-10-05 16:57:31 +02:00
| ^^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
2017-10-05 16:57:31 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | impl<K: Hash + Eq, V, S: ::std::hash::BuildHasher + Default> Foo<i8> for (HashMap<K, V, S>,) {
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^
2017-10-11 16:08:36 +02:00
help: ...and use generic constructor
|
2018-12-27 16:57:55 +01:00
LL | ((HashMap::default(),), (HashMap::with_capacity_and_hasher(10, Default::default()),))
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-05 16:57:31 +02:00
2017-10-21 03:07:24 +02:00
error: impl for `HashMap` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:30:19
2017-10-05 16:57:31 +02:00
|
2018-12-27 16:57:55 +01:00
LL | impl Foo<i16> for HashMap<String, String> {
2017-10-05 16:57:31 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
2017-10-05 16:57:31 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | impl<S: ::std::hash::BuildHasher + Default> Foo<i16> for HashMap<String, String, S> {
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-11 16:08:36 +02:00
help: ...and use generic constructor
|
2018-12-27 16:57:55 +01:00
LL | (HashMap::default(), HashMap::with_capacity_and_hasher(10, Default::default()))
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-05 16:57:31 +02:00
2017-10-21 03:07:24 +02:00
error: impl for `HashSet` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:47:32
2017-10-05 16:57:31 +02:00
|
2018-12-27 16:57:55 +01:00
LL | impl<T: Hash + Eq> Foo<i8> for HashSet<T> {
2017-10-05 16:57:31 +02:00
| ^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
2017-10-05 16:57:31 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | impl<T: Hash + Eq, S: ::std::hash::BuildHasher + Default> Foo<i8> for HashSet<T, S> {
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^
2017-10-11 16:08:36 +02:00
help: ...and use generic constructor
|
2018-12-27 16:57:55 +01:00
LL | (HashSet::default(), HashSet::with_capacity_and_hasher(10, Default::default()))
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-05 16:57:31 +02:00
2017-10-21 03:07:24 +02:00
error: impl for `HashSet` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:52:19
2017-10-05 16:57:31 +02:00
|
2018-12-27 16:57:55 +01:00
LL | impl Foo<i16> for HashSet<String> {
2017-10-05 16:57:31 +02:00
| ^^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
2017-10-05 16:57:31 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | impl<S: ::std::hash::BuildHasher + Default> Foo<i16> for HashSet<String, S> {
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^
2017-10-11 16:08:36 +02:00
help: ...and use generic constructor
|
2018-12-27 16:57:55 +01:00
LL | (HashSet::default(), HashSet::with_capacity_and_hasher(10, Default::default()))
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-05 16:57:31 +02:00
2017-10-21 03:07:24 +02:00
error: parameter of type `HashMap` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:69:23
2017-10-05 16:57:31 +02:00
|
2018-12-27 16:57:55 +01:00
LL | pub fn foo(_map: &mut HashMap<i32, i32>, _set: &mut HashSet<i32>) {}
2017-10-05 16:57:31 +02:00
| ^^^^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
2017-10-05 16:57:31 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | pub fn foo<S: ::std::hash::BuildHasher>(_map: &mut HashMap<i32, i32, S>, _set: &mut HashSet<i32>) {}
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^
2017-10-05 16:57:31 +02:00
2017-10-21 03:07:24 +02:00
error: parameter of type `HashSet` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:69:53
2017-10-05 16:57:31 +02:00
|
2018-12-27 16:57:55 +01:00
LL | pub fn foo(_map: &mut HashMap<i32, i32>, _set: &mut HashSet<i32>) {}
2017-10-05 16:57:31 +02:00
| ^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
2017-10-05 16:57:31 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | pub fn foo<S: ::std::hash::BuildHasher>(_map: &mut HashMap<i32, i32>, _set: &mut HashSet<i32, S>) {}
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^
2017-10-05 16:57:31 +02:00
2017-10-21 03:07:24 +02:00
error: impl for `HashMap` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:73:43
2017-10-11 05:10:10 +02:00
|
2018-12-27 16:57:55 +01:00
LL | impl<K: Hash + Eq, V> Foo<u8> for HashMap<K, V> {
2017-10-11 05:10:10 +02:00
| ^^^^^^^^^^^^^
...
2018-12-27 16:57:55 +01:00
LL | gen!(impl);
| ----------- in this macro invocation
2019-10-26 21:53:42 +02:00
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2017-10-11 05:10:10 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | impl<K: Hash + Eq, V, S: ::std::hash::BuildHasher + Default> Foo<u8> for HashMap<K, V, S> {
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^
2017-10-11 16:08:36 +02:00
help: ...and use generic constructor
|
2018-12-27 16:57:55 +01:00
LL | (HashMap::default(), HashMap::with_capacity_and_hasher(10, Default::default()))
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-11 05:10:10 +02:00
2017-10-21 03:07:24 +02:00
error: parameter of type `HashMap` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:81:33
2017-10-11 05:10:10 +02:00
|
2018-12-27 16:57:55 +01:00
LL | pub fn $name(_map: &mut HashMap<i32, i32>, _set: &mut HashSet<i32>) {}
2017-10-11 05:10:10 +02:00
| ^^^^^^^^^^^^^^^^^
...
2018-12-27 16:57:55 +01:00
LL | gen!(fn bar);
2017-10-11 05:10:10 +02:00
| ------------- in this macro invocation
2019-10-26 21:53:42 +02:00
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2017-10-11 05:10:10 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | pub fn $name<S: ::std::hash::BuildHasher>(_map: &mut HashMap<i32, i32, S>, _set: &mut HashSet<i32>) {}
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^
2017-10-11 05:10:10 +02:00
2017-10-21 03:07:24 +02:00
error: parameter of type `HashSet` should be generalized over different hashers
2020-04-03 04:09:30 +02:00
--> $DIR/implicit_hasher.rs:81:63
2017-10-11 05:10:10 +02:00
|
2018-12-27 16:57:55 +01:00
LL | pub fn $name(_map: &mut HashMap<i32, i32>, _set: &mut HashSet<i32>) {}
2017-10-11 05:10:10 +02:00
| ^^^^^^^^^^^^
...
2018-12-27 16:57:55 +01:00
LL | gen!(fn bar);
2017-10-11 05:10:10 +02:00
| ------------- in this macro invocation
2019-10-26 21:53:42 +02:00
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2017-10-11 05:10:10 +02:00
help: consider adding a type parameter
|
2018-12-27 16:57:55 +01:00
LL | pub fn $name<S: ::std::hash::BuildHasher>(_map: &mut HashMap<i32, i32>, _set: &mut HashSet<i32, S>) {}
2018-05-29 10:56:58 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^
2017-10-11 05:10:10 +02:00
2018-01-16 17:06:27 +01:00
error: aborting due to 10 previous errors