mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
231 B
Rust
14 lines
231 B
Rust
// 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() {}
|