10 lines
132 B
Rust
10 lines
132 B
Rust
|
#![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> {
|
||
|
}
|