Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
rustdoc
/
auxiliary
/
ext-anon-fn-params.rs
blob: 1acb919ca64f53c0b09941ba3b28c7db02db294a [
file
] [
log
] [
blame
]
//@ edition: 2015
#![
expect
(
anonymous_parameters
)]
pub
trait
Trait
{
fn
required
(
Option
<
i32
>,
impl
Fn
(&
str
)
->
bool
);
fn
provided
([
i32
;
2
])
{}
}