blob: a8a946d5ed2ad1eba00e136bad796de9fbcc17bf [file] [log] [blame]
//@ run-pass
#![allow(dead_code)]
struct Foo<T> {
a: T
}
type Bar<T> = Foo<T>;
fn takebar<T>(_b: Bar<T>) { }
pub fn main() { }