about summary refs log tree commit diff
path: root/src/test/run-pass/dst-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/dst-struct.rs')
-rw-r--r--src/test/run-pass/dst-struct.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/run-pass/dst-struct.rs b/src/test/run-pass/dst-struct.rs
index 94efa7a256b..56199c1aa61 100644
--- a/src/test/run-pass/dst-struct.rs
+++ b/src/test/run-pass/dst-struct.rs
@@ -127,7 +127,6 @@ pub fn main() {
     let f2 : Box<Fat<[isize]>> = f1;
     foo(&*f2);
 
-    // FIXME (#22405): Replace `Box::new` with `box` here when/if possible.
     let f3 : Box<Fat<[isize]>> =
         Box::<Fat<[_; 3]>>::new(Fat { f1: 5, f2: "some str", ptr: [1, 2, 3] });
     foo(&*f3);