Files
rust/tests/ui/parser/bounds-obj-parens.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
111 B
Rust
Raw Permalink Normal View History

2022-05-28 18:57:02 +09:00
//@ check-pass
type A = Box<dyn (Fn(u8) -> u8) + 'static + Send + Sync>; // OK (but see #39318)
fn main() {}