summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0091.rs
blob: 2427f5cfe13d0cd4cc92b22bcef8de7a909863f7 (plain)
1
2
3
4
5
type Foo<T> = u32; //~ ERROR E0091
type Foo2<A, B> = Box<A>; //~ ERROR E0091

fn main() {
}