14 lines
233 B
Rust
14 lines
233 B
Rust
|
//@ 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() {}
|