about summary refs log tree commit diff
path: root/tests/ui/parser/bounds-obj-parens.rs
blob: 5ba90b50d2f1f6926c009e1b9b9334cdeb803e4f (plain)
1
2
3
4
5
//@ check-pass

type A = Box<dyn (Fn(u8) -> u8) + 'static + Send + Sync>; // OK (but see #39318)

fn main() {}