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

8 lines
87 B
Rust
Raw Normal View History

2016-05-27 22:06:24 +02:00
struct Foo<T=U, U=()> { //~ ERROR E0128
field1: T,
field2: U,
}
fn main() {
}