Skip to content

Commit b2c9871

Browse files
committed
update another comment
1 parent 3cf413e commit b2c9871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/run-pass/stacked-borrows/stacked-borrows.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ fn drop_after_sharing() {
108108

109109
// Make sure that coercing &mut T to *const T produces a writeable pointer.
110110
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>
111+
// TODO: This is currently disabled, waiting on a decision on <https://github.com/rust-lang/rust/issues/56604>
112112
/*let x = &mut 0;
113113
let y: *const i32 = x;
114114
unsafe { *(y as *mut i32) = 1; }

0 commit comments

Comments
 (0)