Files
rust/tests/ui/impl-trait/struct-field-fragment-in-name.rs

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

17 lines
184 B
Rust
Raw Normal View History

//@ check-pass
trait Trait<T> {}
fn a(_: impl Trait<
[(); {
struct D {
#[rustfmt::skip]
bar: (),
}
0
}],
>) {
}
fn main() {}