rustc/tests/ui/missing-trait-bounds/issue-69725.fixed
2024-06-21 09:39:33 +02:00

14 lines
233 B
Plaintext

//@ 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() {}