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.
1 parent 51a54b6 commit 1d69c98Copy full SHA for 1d69c98
src/libcore/macros.rs
@@ -516,13 +516,16 @@ macro_rules! unreachable {
516
});
517
}
518
519
-/// A standardized placeholder for marking unfinished code. It panics with the
520
-/// message `"not yet implemented"` when executed.
+/// A standardized placeholder for marking unfinished code.
521
///
522
/// This can be useful if you are prototyping and are just looking to have your
523
/// code typecheck, or if you're implementing a trait that requires multiple
524
/// methods, and you're only planning on using one of them.
525
+/// # Panics
526
+///
527
+/// This will always [panic!](macro.panic.html)
528
529
/// # Examples
530
531
/// Here's an example of some in-progress code. We have a trait `Foo`:
0 commit comments