rust/tests/rustdoc-ui/issue-105742.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
385 B
Rust
Raw Normal View History

2023-01-02 07:29:38 -06:00
// 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
}