mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-19 19:17:31 +00:00
8 lines
154 B
Rust
8 lines
154 B
Rust
//@ edition: 2015
|
|
#![expect(anonymous_parameters)]
|
|
|
|
pub trait Trait {
|
|
fn required(Option<i32>, impl Fn(&str) -> bool);
|
|
fn provided([i32; 2]) {}
|
|
}
|