diff options
| author | Nicolas Silva <nical.silva@gmail.com> | 2014-04-27 22:57:10 +0200 |
|---|---|---|
| committer | Nicolas Silva <nical.silva@gmail.com> | 2014-04-27 23:09:57 +0200 |
| commit | 02c45dece43f9f884b5b09ceb3db26c2a056a7f4 (patch) | |
| tree | 9be9d90ef713950bf57c8301401ebeedbe02df6d | |
| parent | a539b0d5831e6dcabff21d9c34ba55d782467961 (diff) | |
| download | rust-02c45dece43f9f884b5b09ceb3db26c2a056a7f4.tar.gz rust-02c45dece43f9f884b5b09ceb3db26c2a056a7f4.zip | |
Fix test issue-4016.rs with the json API change
| -rw-r--r-- | src/test/run-pass/issue-4016.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/issue-4016.rs b/src/test/run-pass/issue-4016.rs index 3152cda2648..20b818f47d4 100644 --- a/src/test/run-pass/issue-4016.rs +++ b/src/test/run-pass/issue-4016.rs @@ -13,7 +13,7 @@ extern crate serialize; use serialize::{json, Decodable}; -trait JD : Decodable<json::Decoder, json::Error> { } +trait JD : Decodable<json::Decoder, json::DecoderError> { } fn exec<T: JD>() { let doc = json::from_str("").unwrap(); |
