about summary refs log tree commit diff
path: root/src/test/run-pass/dst-struct.rs
diff options
context:
space:
mode:
authorWesley Wiser <wwiser@gmail.com>2017-01-30 21:38:13 -0500
committerWesley Wiser <wwiser@gmail.com>2017-01-31 21:27:13 -0500
commit94687aaf58c9a935ed3efb84d0f3b60e00342dcc (patch)
treea42706bc2694e3dc22245713b2947b33ab3f865a /src/test/run-pass/dst-struct.rs
parent8e9e0552767113ec24f6f8f207ade36a7bc5a091 (diff)
downloadrust-94687aaf58c9a935ed3efb84d0f3b60e00342dcc.tar.gz
rust-94687aaf58c9a935ed3efb84d0f3b60e00342dcc.zip
Removes FIXMEs related to #22405
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);