summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-91633.rs
blob: 331a798dd7a36260ec617103700bc34425d1cdd2 (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(){}