Skip to content

Commit 43d20c7

Browse files
Rollup merge of rust-lang#44326 - Eh2406:FIXME#44590, r=arielb1
rust-lang#33490 is closed remove the FIXME let's see if this can be cleaned up. rust-lang#33490 (comment)
2 parents a4b5484 + e90f423 commit 43d20c7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: src/test/run-pass/issue-23338-ensure-param-drop-order.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ fn test<'a>(log: d::Log<'a>) {
6464
d::println(&format!("result {}", result));
6565
}
6666

67-
// FIXME(#33490) Remove the double braces when old trans is gone.
68-
fn foo<'a>(da0: D<'a>, de1: D<'a>) -> D<'a> {{
67+
fn foo<'a>(da0: D<'a>, de1: D<'a>) -> D<'a> {
6968
d::println("entered foo");
7069
let de2 = de1.incr(); // creates D(de_2, 2)
7170
let de4 = {
@@ -74,7 +73,7 @@ fn foo<'a>(da0: D<'a>, de1: D<'a>) -> D<'a> {{
7473
};
7574
d::println("eval tail of foo");
7675
de4.incr().incr() // creates D(de_5, 6) and D(de_6, 7)
77-
}}
76+
}
7877

7978
// This module provides simultaneous printouts of the dynamic extents
8079
// of all of the D values, in addition to logging the order that each

0 commit comments

Comments
 (0)