]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unsized-locals/unsized-exprs3.rs
Rollup merge of #104792 - notriddle:notriddle/crate-search-title-display, r=Guillaume...
[rust.git] / src / test / ui / unsized-locals / unsized-exprs3.rs
1 // aux-build:ufuncs.rs
2
3 extern crate ufuncs;
4
5 use ufuncs::udrop;
6
7 fn main() {
8     udrop as fn([u8]);
9     //~^ERROR E0277
10 }