forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a regression test for rust-lang#112895
Signed-off-by: Yuki Okushi <[email protected]>
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
tests/ui/generic-associated-types/gat-bounds-not-checked-with-right-substitutions.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// This test checks that we correctly reject the following unsound code. | ||
|
||
trait Lengthen<T> { | ||
fn lengthen(self) -> T; | ||
} | ||
|
||
impl<'a> Lengthen<&'a str> for &'a str { | ||
fn lengthen(self) -> &'a str { self } | ||
} | ||
|
||
trait Gat { | ||
type Gat<'a>: for<'b> Lengthen<Self::Gat<'b>>; | ||
|
||
fn lengthen(s: Self::Gat<'_>) -> Self::Gat<'static> { | ||
s.lengthen() | ||
} | ||
} | ||
|
||
impl Gat for () { | ||
type Gat<'a> = &'a str; //~ ERROR: implementation of `Lengthen` is not general enough | ||
} | ||
|
||
fn main() { | ||
let s = "hello, garbage".to_string(); | ||
let borrow: &'static str = <() as Gat>::lengthen(&s); | ||
drop(s); | ||
|
||
println!("{borrow}"); | ||
} |
11 changes: 11 additions & 0 deletions
11
tests/ui/generic-associated-types/gat-bounds-not-checked-with-right-substitutions.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
error: implementation of `Lengthen` is not general enough | ||
--> $DIR/gat-bounds-not-checked-with-right-substitutions.rs:20:20 | ||
| | ||
LL | type Gat<'a> = &'a str; | ||
| ^^^^^^^ implementation of `Lengthen` is not general enough | ||
| | ||
= note: `Lengthen<&'0 str>` would have to be implemented for the type `&'a str`, for any lifetime `'0`... | ||
= note: ...but `Lengthen<&'1 str>` is actually implemented for the type `&'1 str`, for some specific lifetime `'1` | ||
|
||
error: aborting due to previous error | ||
|