summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-24446.rs
blob: 9ab952ade9cf4636ccddc39c1d88908ee51addf5 (plain)
1
2
3
4
5
6
7
fn main() {
    static foo: dyn Fn() -> u32 = || -> u32 {
        //~^ ERROR the size for values of type
        //~| ERROR cannot be shared between threads safely
        0
    };
}