rust/tests/ui/error-codes/E0128.rs

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 20:06:24 +00:00
struct Foo<T=U, U=()> { //~ ERROR E0128
field1: T,
field2: U,
}
fn main() {
}