diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-01-28 10:47:19 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-01-29 07:49:02 -0500 |
| commit | 4b75931ce24f2c7ccf6486e434c24c6df595f4bc (patch) | |
| tree | c98f76b8f78472c33bb2c9073346154d650a1efe | |
| parent | 788181d4055747b5307f186a873ab5d2acd29994 (diff) | |
| download | rust-4b75931ce24f2c7ccf6486e434c24c6df595f4bc.tar.gz rust-4b75931ce24f2c7ccf6486e434c24c6df595f4bc.zip | |
fix import in cfail test
| -rw-r--r-- | src/test/compile-fail/issue-17728.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/issue-17728.rs b/src/test/compile-fail/issue-17728.rs index 6d827fb86e2..9c708bdeaa8 100644 --- a/src/test/compile-fail/issue-17728.rs +++ b/src/test/compile-fail/issue-17728.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use std::fmt::{Show, Formatter, Error}; +use std::fmt::{Debug, Formatter, Error}; use std::collections::HashMap; trait HasInventory { |
