Add a regression test
This commit is contained in:
parent
1631b4de1c
commit
3d67649287
3 changed files with 37 additions and 0 deletions
8
src/test/ui/issues/auxiliary/issue-69725.rs
Normal file
8
src/test/ui/issues/auxiliary/issue-69725.rs
Normal file
|
@ -0,0 +1,8 @@
|
|||
#[derive(Clone)]
|
||||
pub struct Struct<A>(A);
|
||||
|
||||
impl<A> Struct<A> {
|
||||
pub fn new() -> Self {
|
||||
todo!()
|
||||
}
|
||||
}
|
11
src/test/ui/issues/issue-69725.rs
Normal file
11
src/test/ui/issues/issue-69725.rs
Normal file
|
@ -0,0 +1,11 @@
|
|||
// aux-build:issue-69725.rs
|
||||
|
||||
extern crate issue_69725;
|
||||
use issue_69725::Struct;
|
||||
|
||||
fn crash<A>() {
|
||||
let _ = Struct::<A>::new().clone();
|
||||
//~^ ERROR: no method named `clone` found
|
||||
}
|
||||
|
||||
fn main() {}
|
18
src/test/ui/issues/issue-69725.stderr
Normal file
18
src/test/ui/issues/issue-69725.stderr
Normal file
|
@ -0,0 +1,18 @@
|
|||
error[E0599]: no method named `clone` found for struct `issue_69725::Struct<A>` in the current scope
|
||||
--> $DIR/issue-69725.rs:7:32
|
||||
|
|
||||
LL | let _ = Struct::<A>::new().clone();
|
||||
| ^^^^^ method not found in `issue_69725::Struct<A>`
|
||||
|
|
||||
::: $DIR/auxiliary/issue-69725.rs:2:1
|
||||
|
|
||||
LL | pub struct Struct<A>(A);
|
||||
| ------------------------ doesn't satisfy `issue_69725::Struct<A>: std::clone::Clone`
|
||||
|
|
||||
= note: the method `clone` exists but the following trait bounds were not satisfied:
|
||||
`A: std::clone::Clone`
|
||||
which is required by `issue_69725::Struct<A>: std::clone::Clone`
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0599`.
|
Loading…
Add table
Reference in a new issue