rust/src/test/ui/parser/bounds-obj-parens.rs

6 lines
108 B
Rust
Raw Normal View History

2018-10-20 16:02:06 -05:00
// compile-pass
type A = Box<(Fn(u8) -> u8) + 'static + Send + Sync>; // OK (but see #39318)
fn main() {}