Files
rust/tests/ui/static/issue-24446.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
124 B
Rust
Raw Normal View History

fn main() {
2019-05-28 14:46:13 -04:00
static foo: dyn Fn() -> u32 = || -> u32 {
//~^ ERROR the size for values of type
0
};
}