summary refs log tree commit diff
path: root/src/test/ui/issues/issue-24446.rs
blob: c5e1b49e5ed1cb9245f5e5aa534f9cf8009f1f23 (plain)
1
2
3
4
5
6
fn main() {
    static foo: Fn() -> u32 = || -> u32 {
        //~^ ERROR the size for values of type
        0
    };
}