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.
2 parents b6ab1fa + f87d180 commit b430f62Copy full SHA for b430f62
library/std/src/io/stdio.rs
@@ -394,7 +394,6 @@ impl Stdin {
394
/// # Examples
395
///
396
/// ```no_run
397
- /// #![feature(stdin_forwarders)]
398
/// use std::io;
399
400
/// let lines = io::stdin().lines();
@@ -403,7 +402,7 @@ impl Stdin {
403
402
/// }
404
/// ```
405
#[must_use = "`self` will be dropped if the result is not used"]
406
- #[unstable(feature = "stdin_forwarders", issue = "87096")]
+ #[stable(feature = "stdin_forwarders", since = "1.62.0")]
407
pub fn lines(self) -> Lines<StdinLock<'static>> {
408
self.lock().lines()
409
}
0 commit comments