blob: fd67221144a38bfe77f88b73acb4ed088937c353 [file] [log] [blame]
#![crate_type = "lib"]
pub struct V<S>(S);
pub trait An {
type U;
}
pub trait F<A> {
}
impl<A: An> F<A> for V<<A as An>::U> {
}