about summary refs log tree commit diff
path: root/tests/ui/typeck/issue-91633.rs
blob: e2a8d5fdd94c0332013b4d4f9f55f4b5418c47da (plain)
1
2
3
4
5
6
7
8
//@ check-pass
fn f<T> (it: &[T])
where
    [T] : std::ops::Index<usize>,
{
    let _ = &it[0];
}
fn main(){}