rust/tests/ui/feature-gates/feature-gate-unsized_locals.rs

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

6 lines
57 B
Rust
Raw Normal View History

2019-05-28 13:46:13 -05:00
fn f(f: dyn FnOnce()) {}
2018-05-28 10:10:09 -05:00
//~^ ERROR E0277
fn main() {
}