Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
parser
/
bounds-obj-parens.rs
blob: 5ba90b50d2f1f6926c009e1b9b9334cdeb803e4f [
file
] [
log
] [
blame
]
//@ check-pass
type
A
=
Box
<
dyn
(
Fn
(
u8
)
->
u8
)
+
'
static
+
Send
+
Sync
>;
// OK (but see #39318)
fn
main
()
{}