summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsized-locals/unsized-parameters.rs
blob: a1b772a7eb689c75c3b802c56a97e1f24af6e4b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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);
}