mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
14 lines
233 B
Plaintext
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() {}
|