We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e915b07 commit 56b7ef9Copy full SHA for 56b7ef9
1 file changed
library/core/src/flux_info.rs
@@ -35,7 +35,7 @@
35
}
36
37
impl BuildHasherDefault {
38
- #[trusted] // https://github.com/flux-rs/flux/issues/1185
+ #[trusted(reason="https://github.com/flux-rs/flux/issues/1185")]
39
fn new() -> Self;
40
41
@@ -45,13 +45,13 @@
45
46
47
impl Clone for hash::BuildHasherDefault {
48
49
fn clone(self: &Self) -> Self;
50
51
52
impl Debug for time::Duration {
53
- #[trusted] // modular arithmetic invariant inside nested fmt_decimal
+ #[trusted(reason="modular arithmetic invariant inside nested fmt_decimal")]
54
fn fmt(self: &Self, f: &mut fmt::Formatter) -> fmt::Result;
55
56
}]
57
-const _: () = ();
+const _: () = {};
0 commit comments