2021-10-13 11:07:22 -05:00
|
|
|
// run-rustfix
|
2020-03-06 13:38:50 -06:00
|
|
|
// aux-build:issue-69725.rs
|
2021-10-13 11:07:22 -05:00
|
|
|
#![allow(dead_code)]
|
2020-03-06 13:38:50 -06:00
|
|
|
|
|
|
|
extern crate issue_69725;
|
|
|
|
use issue_69725::Struct;
|
|
|
|
|
|
|
|
fn crash<A>() {
|
|
|
|
let _ = Struct::<A>::new().clone();
|
2020-09-26 16:20:14 -05:00
|
|
|
//~^ ERROR: the method
|
2020-03-06 13:38:50 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|