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