os-rust/tests/ui/unsized-locals/unsized-exprs3.rs

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

11 lines
124 B
Rust
Raw Permalink Normal View History

//@ aux-build:ufuncs.rs
extern crate ufuncs;
use ufuncs::udrop;
fn main() {
udrop as fn([u8]);
//~^ERROR E0277
}