9 lines
157 B
Rust
9 lines
157 B
Rust
|
// https://github.com/rust-analyzer/rust-analyzer/issues/311
|
||
|
|
||
|
pub fn foo<S: Iterator>() -> String
|
||
|
where
|
||
|
<S as Iterator>::Item: Eq,
|
||
|
{
|
||
|
"".to_owned()
|
||
|
}
|