]> git.lizzy.rs Git - rust.git/blob - tests/ui/unsized-locals/unsized-exprs3.rs
Don't resolve type var roots in point_at_expr_source_of_inferred_type
[rust.git] / tests / 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 }