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