Skip to content

Commit 874b484

Browse files
committed
allow(default_could_be_derived) in Default examples
1 parent 0411790 commit 874b484

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/default.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
/// your type that should be the default:
7878
///
7979
/// ```
80-
/// # #![allow(dead_code)]
80+
/// # #![allow(dead_code, default_could_be_derived)]
8181
/// enum Kind {
8282
/// A,
8383
/// B,
@@ -121,7 +121,7 @@ pub trait Default: Sized {
121121
/// Making your own:
122122
///
123123
/// ```
124-
/// # #[allow(dead_code)]
124+
/// # #![allow(dead_code, default_could_be_derived)]
125125
/// enum Kind {
126126
/// A,
127127
/// B,

0 commit comments

Comments
 (0)