summary refs log tree commit diff
path: root/tests/ui/static/issue-24446.rs
blob: 830e373c189d7fb2732dcbd076a58fbbb37a3d14 (plain)
1
2
3
4
5
6
7
8
fn main() {
    static foo: dyn Fn() -> u32 = || -> u32 {
        //~^ ERROR the size for values of type
        //~| ERROR cannot be shared between threads safely
        //~| ERROR mismatched types
        0
    };
}