From 4cf66f0b09c6bd917401ef69aea2b287dca49a53 Mon Sep 17 00:00:00 2001 From: dvdsk Date: Sun, 16 Jul 2023 23:35:38 +0200 Subject: [PATCH] adds crate attribute to examples so they compile --- library/std/src/thread/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index 9eb3193fd9f..7b26068c294 100644 --- a/library/std/src/thread/mod.rs +++ b/library/std/src/thread/mod.rs @@ -890,6 +890,7 @@ pub fn sleep(dur: Duration) { /// A simple game loop that limits the game to 60 frames per second. /// /// ```no_run +/// #![feature(thread_sleep_until)] /// # use std::time::{Duration, Instant}; /// # use std::thread; /// # @@ -912,6 +913,7 @@ pub fn sleep(dur: Duration) { /// api call takes does not influence when we retry or when we give up /// /// ```no_run +/// #![feature(thread_sleep_until)] /// # use std::time::{Duration, Instant}; /// # use std::thread; /// #