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

6 lines
92 B
Rust
Raw Normal View History

2016-05-25 13:58:07 +02:00
type Foo<T> = u32; //~ ERROR E0091
type Foo2<A, B> = Box<A>; //~ ERROR E0091
fn main() {
}