Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
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
])
{}
}