mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 08:29:11 +00:00
7 lines
113 B
Rust
7 lines
113 B
Rust
trait MyTrait<T>: Iterator {
|
|
Item = T;
|
|
//~^ ERROR expected one of `!` or `::`, found `=`
|
|
}
|
|
|
|
fn main() {}
|