]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/bounds-obj-parens.rs
Change syntax for TyAlias where clauses
[rust.git] / src / test / ui / parser / bounds-obj-parens.rs
1 // build-pass (FIXME(62277): could be check-pass?)
2
3 #![allow(bare_trait_objects)]
4
5 type A = Box<(Fn(u8) -> u8) + 'static + Send + Sync>; // OK (but see #39318)
6
7 fn main() {}