mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
241 B
Rust
14 lines
241 B
Rust
// 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);
|
|
}
|