Skip to content

Commit aa417ca

Browse files
committed
Add tests related to normalization in implied bounds
1 parent b4c4664 commit aa417ca

5 files changed

+105
-8
lines changed
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// check-pass
2+
// known-bug: #109628
3+
4+
trait Trait {
5+
type Assoc;
6+
}
7+
8+
impl<X: 'static> Trait for (X,) {
9+
type Assoc = ();
10+
}
11+
12+
struct Foo<T: Trait>(T)
13+
where
14+
T::Assoc: Clone; // any predicate using `T::Assoc` works here
15+
16+
fn func1(foo: Foo<(&str,)>) {
17+
let _: &'static str = foo.0.0;
18+
}
19+
20+
trait TestTrait {}
21+
22+
impl<X> TestTrait for [Foo<(X,)>; 1] {}
23+
24+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,33 @@
11
error[E0759]: `fn` parameter has lifetime `'x` but it needs to satisfy a `'static` lifetime requirement
2-
--> $DIR/normalization-nested.rs:35:20
2+
--> $DIR/normalization-nested.rs:35:28
33
|
4-
LL | pub fn test<'x>(_: Map<Vec<&'x ()>>, s: &'x str) -> &'static str {
5-
| ^^^^^^^^^^^^^^^^
6-
| |
7-
| this data with lifetime `'x`...
8-
| ...is used and required to live as long as `'static` here
4+
LL | pub fn test_wfcheck<'x>(_: Map<Vec<&'x ()>>) {}
5+
| ^^^^^^^^^^^^^^^^
6+
| |
7+
| this data with lifetime `'x`...
8+
| ...is used and required to live as long as `'static` here
99
|
1010
note: `'static` lifetime requirement introduced by this bound
1111
--> $DIR/normalization-nested.rs:33:14
1212
|
1313
LL | I::Item: 'static;
1414
| ^^^^^^^
1515

16-
error: aborting due to 1 previous error
16+
error[E0759]: `fn` parameter has lifetime `'x` but it needs to satisfy a `'static` lifetime requirement
17+
--> $DIR/normalization-nested.rs:37:29
18+
|
19+
LL | pub fn test_borrowck<'x>(_: Map<Vec<&'x ()>>, s: &'x str) -> &'static str {
20+
| ^^^^^^^^^^^^^^^^
21+
| |
22+
| this data with lifetime `'x`...
23+
| ...is used and required to live as long as `'static` here
24+
|
25+
note: `'static` lifetime requirement introduced by this bound
26+
--> $DIR/normalization-nested.rs:33:14
27+
|
28+
LL | I::Item: 'static;
29+
| ^^^^^^^
30+
31+
error: aborting due to 2 previous errors
1732

1833
For more information about this error, try `rustc --explain E0759`.

tests/ui/implied-bounds/normalization-nested.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ where
3232
I: Iter,
3333
I::Item: 'static;
3434

35-
pub fn test<'x>(_: Map<Vec<&'x ()>>, s: &'x str) -> &'static str {
35+
pub fn test_wfcheck<'x>(_: Map<Vec<&'x ()>>) {}
36+
37+
pub fn test_borrowck<'x>(_: Map<Vec<&'x ()>>, s: &'x str) -> &'static str {
3638
s
3739
}
3840

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
error: lifetime may not live long enough
2+
--> $DIR/normalization-preserve-equality.rs:24:1
3+
|
4+
LL | fn test_borrowck<'a, 'b>(_: (<Equal<'a, 'b> as Trait>::Ty, Equal<'a, 'b>)) {
5+
| ^^^^^^^^^^^^^^^^^--^^--^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6+
| | | |
7+
| | | lifetime `'b` defined here
8+
| | lifetime `'a` defined here
9+
| requires that `'a` must outlive `'b`
10+
|
11+
= help: consider adding the following bound: `'a: 'b`
12+
13+
error: lifetime may not live long enough
14+
--> $DIR/normalization-preserve-equality.rs:24:1
15+
|
16+
LL | fn test_borrowck<'a, 'b>(_: (<Equal<'a, 'b> as Trait>::Ty, Equal<'a, 'b>)) {
17+
| ^^^^^^^^^^^^^^^^^--^^--^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18+
| | | |
19+
| | | lifetime `'b` defined here
20+
| | lifetime `'a` defined here
21+
| requires that `'b` must outlive `'a`
22+
|
23+
= help: consider adding the following bound: `'b: 'a`
24+
25+
help: `'a` and `'b` must be the same: replace one with the other
26+
27+
error: aborting due to 2 previous errors
28+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Both revisions should pass. `borrowck` revision is a bug!
2+
//
3+
// revisions: wfcheck borrowck
4+
// [wfcheck] check-pass
5+
// [borrowck] check-fail
6+
// [borrowck] known-bug: #106569
7+
8+
struct Equal<'a, 'b>(&'a &'b (), &'b &'a ()); // implies 'a == 'b
9+
10+
trait Trait {
11+
type Ty;
12+
}
13+
14+
impl<'x> Trait for Equal<'x, 'x> {
15+
type Ty = ();
16+
}
17+
18+
trait WfCheckTrait {}
19+
20+
#[cfg(wfcheck)]
21+
impl<'a, 'b> WfCheckTrait for (<Equal<'a, 'b> as Trait>::Ty, Equal<'a, 'b>) {}
22+
23+
#[cfg(borrowck)]
24+
fn test_borrowck<'a, 'b>(_: (<Equal<'a, 'b> as Trait>::Ty, Equal<'a, 'b>)) {
25+
let _ = None::<Equal<'a, 'b>>;
26+
}
27+
28+
fn main() {}

0 commit comments

Comments
 (0)