2023-02-21 14:11:08 -07:00
warning: a method with this name may be added to the standard library in the future
2018-12-25 08:56:47 -07:00
--> $DIR/inference_unstable.rs:16:20
2018-02-26 21:34:06 +08:00
|
LL | assert_eq!('x'.ipu_flatten(), 1);
| ^^^^^^^^^^^
|
2021-02-03 08:38:05 -08:00
= warning: once this associated item is added to the standard library, the ambiguity may cause an error or change in behavior!
2018-03-11 01:58:57 +08:00
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
2018-02-26 21:34:06 +08:00
= help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_flatten(...)` to keep using the current method
2022-09-18 19:55:36 +04:00
= note: `#[warn(unstable_name_collisions)]` on by default
2024-03-07 22:09:00 +00:00
help: add `#![feature(ipu_flatten)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_flatten`
|
LL + #![feature(ipu_flatten)]
|
2018-02-26 21:34:06 +08:00
2023-02-21 14:11:08 -07:00
warning: a method with this name may be added to the standard library in the future
2021-10-26 23:24:45 +01:00
--> $DIR/inference_unstable.rs:19:20
|
LL | assert_eq!('x'.ipu_by_value_vs_by_ref(), 1);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= warning: once this associated item is added to the standard library, the ambiguity may cause an error or change in behavior!
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
= help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_by_value_vs_by_ref(...)` to keep using the current method
2024-03-07 22:09:00 +00:00
help: add `#![feature(ipu_flatten)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_by_value_vs_by_ref`
|
LL + #![feature(ipu_flatten)]
|
2021-10-26 23:24:45 +01:00
2023-02-21 14:11:08 -07:00
warning: a method with this name may be added to the standard library in the future
2021-10-26 23:24:45 +01:00
--> $DIR/inference_unstable.rs:22:20
|
LL | assert_eq!('x'.ipu_by_ref_vs_by_ref_mut(), 1);
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= warning: once this associated item is added to the standard library, the ambiguity may cause an error or change in behavior!
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
= help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_by_ref_vs_by_ref_mut(...)` to keep using the current method
2024-03-07 22:09:00 +00:00
help: add `#![feature(ipu_flatten)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_by_ref_vs_by_ref_mut`
|
LL + #![feature(ipu_flatten)]
|
2021-10-26 23:24:45 +01:00
2023-02-21 14:11:08 -07:00
warning: a method with this name may be added to the standard library in the future
2021-10-26 23:24:45 +01:00
--> $DIR/inference_unstable.rs:25:40
|
LL | assert_eq!((&mut 'x' as *mut char).ipu_by_mut_ptr_vs_by_const_ptr(), 1);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= warning: once this associated item is added to the standard library, the ambiguity may cause an error or change in behavior!
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
= help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_by_mut_ptr_vs_by_const_ptr(...)` to keep using the current method
2024-03-07 22:09:00 +00:00
help: add `#![feature(ipu_flatten)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_by_mut_ptr_vs_by_const_ptr`
|
LL + #![feature(ipu_flatten)]
|
2021-10-26 23:24:45 +01:00
2021-02-03 08:38:05 -08:00
warning: an associated constant with this name may be added to the standard library in the future
2021-10-26 23:24:45 +01:00
--> $DIR/inference_unstable.rs:28:16
2021-02-03 08:38:05 -08:00
|
LL | assert_eq!(char::C, 1);
2024-03-07 22:09:00 +00:00
| ^^^^^^^
2021-02-03 08:38:05 -08:00
|
= warning: once this associated item is added to the standard library, the ambiguity may cause an error or change in behavior!
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
2024-03-07 22:09:00 +00:00
help: use the fully qualified path to the associated const
|
LL | assert_eq!(<char as IpuItertools>::C, 1);
| ~~~~~~~~~~~~~~~~~~~~~~~~~
help: add `#![feature(assoc_const_ipu_iter)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::C`
|
LL + #![feature(assoc_const_ipu_iter)]
|
2021-02-03 08:38:05 -08:00
2021-10-26 23:24:45 +01:00
warning: 5 warnings emitted
2020-03-11 16:30:09 +01:00