2014-02-07 13:08:32 -06:00
|
|
|
// 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-05 10:52:54 -06:00
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate serialize;
|
2012-12-06 20:32:13 -06:00
|
|
|
|
2014-02-21 16:18:39 -06:00
|
|
|
use serialize::{json, Decodable};
|
2012-12-06 20:32:13 -06:00
|
|
|
|
2014-04-27 15:57:10 -05:00
|
|
|
trait JD : Decodable<json::Decoder, json::DecoderError> { }
|
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);
|
2014-03-18 12:58:26 -05:00
|
|
|
let _v: T = Decodable::decode(&mut decoder).unwrap();
|
2014-10-09 14:17:22 -05:00
|
|
|
panic!()
|
2012-12-06 20:32:13 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {}
|