diff options
| author | Richo Healey <richo@psych0tik.net> | 2015-04-08 17:48:19 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2015-04-09 18:03:48 -0700 |
| commit | d8bb08037f9ea7295feb5740a16a6dc1dd810f33 (patch) | |
| tree | ba70ba08c6daf42c16c7ca348c5189cd07039cc4 /src | |
| parent | 333eb85d4b7dc51ada5202c35d5c67663111f403 (diff) | |
| download | rust-d8bb08037f9ea7295feb5740a16a6dc1dd810f33.tar.gz rust-d8bb08037f9ea7295feb5740a16a6dc1dd810f33.zip | |
test: Unignore test for fixed issue #20676
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/run-pass/ifmt.rs | 5 |
1 files changed, 2 insertions, 3 deletions
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 |
