We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cf413e commit b2c9871Copy full SHA for b2c9871
tests/run-pass/stacked-borrows/stacked-borrows.rs
@@ -108,7 +108,7 @@ fn drop_after_sharing() {
108
109
// Make sure that coercing &mut T to *const T produces a writeable pointer.
110
fn direct_mut_to_const_raw() {
111
- // FIXME: This is currently disabled, waiting on a fix for <https://github.com/rust-lang/rust/issues/56604>
+ // TODO: This is currently disabled, waiting on a decision on <https://github.com/rust-lang/rust/issues/56604>
112
/*let x = &mut 0;
113
let y: *const i32 = x;
114
unsafe { *(y as *mut i32) = 1; }
0 commit comments