Skip to content

Commit e90f423

Browse files
committed
#33490 is closed remove the FIXME
1 parent 088216f commit e90f423

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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)