rust/tests/rustdoc-ui/issue-105742.rs
2023-02-14 20:26:03 +00:00

20 lines
385 B
Rust

// compile-flags: -Znormalize-docs
use std::ops::Index;
pub fn next<'a, T>(s: &'a mut dyn SVec<Item = T, Output = T>) {
let _ = s;
}
pub trait SVec: Index<
<Self as SVec>::Item,
Output = <Index<<Self as SVec>::Item,
Output = <Self as SVec>::Item> as SVec>::Item,
> {
type Item<'a, T>;
fn len(&self) -> <Self as SVec>::Item;
//~^ ERROR
//~^^ ERROR
}