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