mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
168 B
Rust
11 lines
168 B
Rust
//@ known-bug: #120241
|
|
//@ edition:2021
|
|
#![feature(object_safe_for_dispatch)]
|
|
#![feature(unsized_fn_params)]
|
|
|
|
fn guard(_s: Copy) -> bool {
|
|
panic!()
|
|
}
|
|
|
|
fn main() {}
|