Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
missing-trait-bounds
/
issue-69725.fixed
blob: f23468abcb0a4fd5d9ae60750c9c5d7eeedacd45 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
//@ aux-build:issue-69725.rs
#![allow(dead_code)]
extern
crate issue_69725
;
use
issue_69725
::
Struct
;
fn crash
<
A
>()
where
A
:
Clone
{
let
_
=
Struct
::<
A
>::
new
().
clone
();
//~^ ERROR: the method
}
fn main
()
{}