diff --git a/src/test/run-pass/ifmt.rs b/src/test/run-pass/ifmt.rs index 7230fe71e21..8658099ec38 100644 --- a/src/test/run-pass/ifmt.rs +++ b/src/test/run-pass/ifmt.rs @@ -93,9 +93,8 @@ pub fn main() { t!(format!("{}", 5 + 5), "10"); t!(format!("{:#4}", C), "☃123"); - // FIXME(#20676) - // let a: &fmt::Debug = &1; - // t!(format!("{:?}", a), "1"); + let a: &fmt::Debug = &1; + t!(format!("{:?}", a), "1"); // Formatting strings and their arguments