blob: d57badcfd8cf83942e9f1994b1394926754bb82c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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() {}
|