]> git.lizzy.rs Git - rust.git/blob - tests/ui/dyn-star/syntax.rs
Don't resolve type var roots in point_at_expr_source_of_inferred_type
[rust.git] / tests / ui / dyn-star / syntax.rs
1 // Make sure we can parse the `dyn* Trait` syntax
2 //
3 // check-pass
4
5 #![feature(dyn_star)]
6 #![allow(incomplete_features)]
7
8 pub fn dyn_star_parameter(_: dyn* Send) {
9 }
10
11 fn main() {}