We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
use std::iter; fn silly<I: Iterator<Item=()>>(it: I) { silly(it.chain(iter::empty())) } fn main() { println!("Start"); silly(iter::empty()); println!("Done"); }
This code causes compiler to be stuck wasting CPU cycles, instead of printing some kind of recursion limit error.