]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/bounds-obj-parens.rs
Auto merge of #100678 - GuillaumeGomez:improve-rustdoc-json-tests, r=aDotInTheVoid
[rust.git] / src / test / 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() {}