Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
unsized-locals
/
unsized-parameters.rs
blob: df12dac48ef5d6574b20fac8a8ae1098f185633c [
file
] [
log
] [
blame
]
//@ run-pass
#![
allow
(
incomplete_features
)]
#![
feature
(
unsized_fn_params
)]
pub
fn
f0
(
_f
:
dyn
FnOnce
())
{}
pub
fn
f1
(
_s
:
str
)
{}
pub
fn
f2
(
_x
:
i32
,
_y
:
[
i32
])
{}
fn
main
()
{
let
foo
=
"foo"
.
to_string
().
into_boxed_str
();
f1
(*
foo
);
}