Skip to content

Commit 5f64777

Browse files
Rollup merge of #67436 - NieDzejkob:todo-stabilization-fix, r=alexcrichton
Correct the todo! stabilization version None
2 parents 8f20e67 + df93bab commit 5f64777

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libcore/macros/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ macro_rules! unimplemented {
686686
/// }
687687
/// ```
688688
#[macro_export]
689-
#[stable(feature = "todo_macro", since = "1.39.0")]
689+
#[stable(feature = "todo_macro", since = "1.40.0")]
690690
macro_rules! todo {
691691
() => (panic!("not yet implemented"));
692692
($($arg:tt)+) => (panic!("not yet implemented: {}", $crate::format_args!($($arg)+)));

src/libstd/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -524,8 +524,8 @@ pub use core::{
524524
unreachable,
525525
write,
526526
writeln,
527-
// Unstable
528527
todo,
528+
// Unstable
529529
matches,
530530
};
531531

0 commit comments

Comments
 (0)