Skip to content

Instantly share code, notes, and snippets.

@jorendorff
Created November 16, 2016 20:33
Show Gist options
  • Save jorendorff/6508695cbe221e1c3fcc34fa78f21e53 to your computer and use it in GitHub Desktop.
Save jorendorff/6508695cbe221e1c3fcc34fa78f21e53 to your computer and use it in GitHub Desktop.
// usage: ./yep | head -n 1
use std::time::Duration;
use std::thread::sleep;
fn main() {
loop {
println!("y"); // expected: panic
sleep(Duration::new(0, 250000000));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment