Skip to content

Commit 6b3db28

Browse files
committed
test: Unignore test for fixed issue #20676
1 parent ed79884 commit 6b3db28

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/test/run-pass/ifmt.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,8 @@ pub fn main() {
9191
t!(format!("{}", 5 + 5), "10");
9292
t!(format!("{:#4}", C), "☃123");
9393

94-
// FIXME(#20676)
95-
// let a: &fmt::Debug = &1;
96-
// t!(format!("{:?}", a), "1");
94+
let a: &fmt::Debug = &1;
95+
t!(format!("{:?}", a), "1");
9796

9897

9998
// Formatting strings and their arguments

0 commit comments

Comments
 (0)