Skip to content

Commit d8bb080

Browse files
committed
test: Unignore test for fixed issue #20676
1 parent 333eb85 commit d8bb080

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
@@ -93,9 +93,8 @@ pub fn main() {
9393
t!(format!("{}", 5 + 5), "10");
9494
t!(format!("{:#4}", C), "☃123");
9595

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

10099

101100
// Formatting strings and their arguments

0 commit comments

Comments
 (0)