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

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 11:58:07 +00:00
type Foo<T> = u32; //~ ERROR E0091
type Foo2<A, B> = Box<A>; //~ ERROR E0091
fn main() {
}