2014-02-07 13:08:32 -06:00
|
|
|
// ignore-fast
|
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 19:32:48 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-02-07 13:08:32 -06:00
|
|
|
// ignore-fast
|
2014-02-05 10:52:54 -06:00
|
|
|
|
2013-05-20 19:07:24 -05:00
|
|
|
extern mod extra;
|
2014-02-05 10:52:54 -06:00
|
|
|
extern mod serialize;
|
2012-12-06 20:32:13 -06:00
|
|
|
|
2013-05-20 19:07:24 -05:00
|
|
|
use extra::json;
|
2014-02-05 10:52:54 -06:00
|
|
|
use serialize::Decodable;
|
2012-12-06 20:32:13 -06:00
|
|
|
|
2013-05-22 21:51:21 -05:00
|
|
|
trait JD : Decodable<json::Decoder> { }
|
2012-12-06 20:32:13 -06:00
|
|
|
|
2013-05-22 21:51:21 -05:00
|
|
|
fn exec<T: JD>() {
|
2013-07-26 20:36:51 -05:00
|
|
|
let doc = json::from_str("").unwrap();
|
2013-12-03 21:18:35 -06:00
|
|
|
let mut decoder = json::Decoder::new(doc);
|
2013-05-22 21:51:21 -05:00
|
|
|
let _v: T = Decodable::decode(&mut decoder);
|
2013-10-21 15:08:31 -05:00
|
|
|
fail!()
|
2012-12-06 20:32:13 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {}
|