Skip to content

Commit 6ad626f

Browse files
committed
Add regression test for issue 90320
1 parent 6a207f2 commit 6ad626f

File tree

4 files changed

+75
-2
lines changed

4 files changed

+75
-2
lines changed

src/test/ui/inference/auxiliary/inference_unstable_iterator.rs

+17
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![feature(staged_api)]
2+
#![feature(arbitrary_self_types)]
23

34
#![stable(feature = "ipu_iterator", since = "1.0.0")]
45

@@ -8,6 +9,22 @@ pub trait IpuIterator {
89
fn ipu_flatten(&self) -> u32 {
910
0
1011
}
12+
13+
#[unstable(feature = "ipu_flatten", issue = "99999")]
14+
fn ipu_by_value_vs_by_ref(self) -> u32 where Self: Sized {
15+
0
16+
}
17+
18+
#[unstable(feature = "ipu_flatten", issue = "99999")]
19+
fn ipu_by_ref_vs_by_ref_mut(&self) -> u32 {
20+
0
21+
}
22+
23+
#[unstable(feature = "ipu_flatten", issue = "99999")]
24+
fn ipu_by_mut_ptr_vs_by_const_ptr(self: *mut Self) -> u32 {
25+
0
26+
}
27+
1128
#[unstable(feature = "assoc_const_ipu_iter", issue = "99999")]
1229
const C: i32;
1330
}

src/test/ui/inference/auxiliary/inference_unstable_itertools.rs

+14
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
1+
#![feature(arbitrary_self_types)]
2+
13
pub trait IpuItertools {
24
fn ipu_flatten(&self) -> u32 {
35
1
46
}
57

8+
fn ipu_by_value_vs_by_ref(&self) -> u32 {
9+
1
10+
}
11+
12+
fn ipu_by_ref_vs_by_ref_mut(&mut self) -> u32 {
13+
1
14+
}
15+
16+
fn ipu_by_mut_ptr_vs_by_const_ptr(self: *const Self) -> u32 {
17+
1
18+
}
19+
620
const C: i32;
721
}
822

src/test/ui/inference/inference_unstable.rs

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ use inference_unstable_itertools::IpuItertools;
1515
fn main() {
1616
assert_eq!('x'.ipu_flatten(), 1);
1717
//~^ WARN an associated function with this name may be added to the standard library in the future
18+
//~| WARN once this associated item is added to the standard library, the ambiguity may cause an
19+
assert_eq!('x'.ipu_by_value_vs_by_ref(), 1);
20+
//~^ WARN an associated function with this name may be added to the standard library in the future
21+
//~| WARN once this associated item is added to the standard library, the ambiguity may cause an
22+
assert_eq!('x'.ipu_by_ref_vs_by_ref_mut(), 1);
23+
//~^ WARN an associated function with this name may be added to the standard library in the future
24+
//~| WARN once this associated item is added to the standard library, the ambiguity may cause an
25+
assert_eq!((&mut 'x' as *mut char).ipu_by_mut_ptr_vs_by_const_ptr(), 1);
26+
//~^ WARN an associated function with this name may be added to the standard library in the future
1827
//~| WARN once this associated item is added to the standard library, the ambiguity may cause an
1928
assert_eq!(char::C, 1);
2029
//~^ WARN an associated constant with this name may be added to the standard library in the future

src/test/ui/inference/inference_unstable.stderr

+35-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,41 @@ LL | assert_eq!('x'.ipu_flatten(), 1);
1010
= help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_flatten(...)` to keep using the current method
1111
= help: add `#![feature(ipu_flatten)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_flatten`
1212

13+
warning: an associated function with this name may be added to the standard library in the future
14+
--> $DIR/inference_unstable.rs:19:20
15+
|
16+
LL | assert_eq!('x'.ipu_by_value_vs_by_ref(), 1);
17+
| ^^^^^^^^^^^^^^^^^^^^^^
18+
|
19+
= warning: once this associated item is added to the standard library, the ambiguity may cause an error or change in behavior!
20+
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
21+
= help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_by_value_vs_by_ref(...)` to keep using the current method
22+
= help: add `#![feature(ipu_flatten)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_by_value_vs_by_ref`
23+
24+
warning: an associated function with this name may be added to the standard library in the future
25+
--> $DIR/inference_unstable.rs:22:20
26+
|
27+
LL | assert_eq!('x'.ipu_by_ref_vs_by_ref_mut(), 1);
28+
| ^^^^^^^^^^^^^^^^^^^^^^^^
29+
|
30+
= warning: once this associated item is added to the standard library, the ambiguity may cause an error or change in behavior!
31+
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
32+
= help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_by_ref_vs_by_ref_mut(...)` to keep using the current method
33+
= help: add `#![feature(ipu_flatten)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_by_ref_vs_by_ref_mut`
34+
35+
warning: an associated function with this name may be added to the standard library in the future
36+
--> $DIR/inference_unstable.rs:25:40
37+
|
38+
LL | assert_eq!((&mut 'x' as *mut char).ipu_by_mut_ptr_vs_by_const_ptr(), 1);
39+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40+
|
41+
= warning: once this associated item is added to the standard library, the ambiguity may cause an error or change in behavior!
42+
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
43+
= help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_by_mut_ptr_vs_by_const_ptr(...)` to keep using the current method
44+
= help: add `#![feature(ipu_flatten)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_by_mut_ptr_vs_by_const_ptr`
45+
1346
warning: an associated constant with this name may be added to the standard library in the future
14-
--> $DIR/inference_unstable.rs:19:16
47+
--> $DIR/inference_unstable.rs:28:16
1548
|
1649
LL | assert_eq!(char::C, 1);
1750
| ^^^^^^^ help: use the fully qualified path to the associated const: `<char as IpuItertools>::C`
@@ -20,5 +53,5 @@ LL | assert_eq!(char::C, 1);
2053
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
2154
= help: add `#![feature(assoc_const_ipu_iter)]` to the crate attributes to enable `inference_unstable_iterator::IpuIterator::C`
2255

23-
warning: 2 warnings emitted
56+
warning: 5 warnings emitted
2457

0 commit comments

Comments
 (0)