mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
28 lines
608 B
Rust
28 lines
608 B
Rust
fn main() {
|
|
let _ = Iterator::next(&mut ());
|
|
//~^ ERROR `()` is not an iterator
|
|
//~| ERROR `()` is not an iterator
|
|
|
|
for _ in false {}
|
|
//~^ ERROR `bool` is not an iterator
|
|
|
|
let _ = Iterator::next(&mut ());
|
|
//~^ ERROR `()` is not an iterator
|
|
|
|
other()
|
|
}
|
|
|
|
pub fn other() {
|
|
// check errors are still reported globally
|
|
|
|
let _ = Iterator::next(&mut ());
|
|
//~^ ERROR `()` is not an iterator
|
|
//~| ERROR `()` is not an iterator
|
|
|
|
let _ = Iterator::next(&mut ());
|
|
//~^ ERROR `()` is not an iterator
|
|
|
|
for _ in false {}
|
|
//~^ ERROR `bool` is not an iterator
|
|
}
|