mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
17 lines
184 B
Rust
17 lines
184 B
Rust
//@ check-pass
|
|
|
|
trait Trait<T> {}
|
|
|
|
fn a(_: impl Trait<
|
|
[(); {
|
|
struct D {
|
|
#[rustfmt::skip]
|
|
bar: (),
|
|
}
|
|
0
|
|
}],
|
|
>) {
|
|
}
|
|
|
|
fn main() {}
|