blob: 985c7e983aa0ef71e1c5ac47729f388113b77578 [file] [log] [blame]
#![crate_name = "foo"]
pub trait Trait {
type Gat<'a>;
}
// Make sure that the elided lifetime shows up
// @has foo/type.T.html
// @hasraw - "pub type T = "
// @hasraw - "&lt;'_&gt;"
pub type T = fn(&<() as Trait>::Gat<'_>);