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