aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/ok/0036_fully_qualified.rs
blob: 6da27933ece5682e07cc92e6747982f3f4a08c3a (plain)
1
2
3
4
5
6
7
8
// https://github.com/rust-analyzer/rust-analyzer/issues/311

pub fn foo<S: Iterator>() -> String
where
    <S as Iterator>::Item: Eq,
{
    "".to_owned()
}