]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/bounds-obj-parens.rs
Merge commit '598f0909568a51de8a2d1148f55a644fd8dffad0' into sync_cg_clif-2023-01-24
[rust.git] / tests / ui / parser / bounds-obj-parens.rs
1 // 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() {}