2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// 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.
|
|
|
|
|
2012-09-12 00:46:20 +00:00
|
|
|
extern mod std;
|
2012-09-10 19:25:45 +00:00
|
|
|
|
|
|
|
trait Serializer {
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Serializable {
|
2013-02-21 01:07:17 +00:00
|
|
|
fn serialize<S:Serializer>(s: S);
|
2012-09-10 19:25:45 +00:00
|
|
|
}
|
|
|
|
|
2013-02-14 19:47:00 +00:00
|
|
|
impl Serializable for int {
|
2013-02-21 01:07:17 +00:00
|
|
|
fn serialize<S:Serializer>(_s: S) { }
|
2012-09-10 19:25:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct F<A> { a: A }
|
|
|
|
|
2013-02-21 01:07:17 +00:00
|
|
|
impl<A:Copy + Serializable> Serializable for F<A> {
|
|
|
|
fn serialize<S:Serializer>(s: S) {
|
2013-02-15 10:44:18 +00:00
|
|
|
self.a.serialize(s);
|
2012-09-10 19:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-12 20:00:50 +00:00
|
|
|
impl Serializer for @io::Writer {
|
2012-09-10 19:25:45 +00:00
|
|
|
}
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2012-09-10 19:25:45 +00:00
|
|
|
do io::with_str_writer |wr| {
|
|
|
|
let foo = F { a: 1 };
|
|
|
|
foo.serialize(wr);
|
|
|
|
|
|
|
|
let bar = F { a: F {a: 1 } };
|
|
|
|
bar.serialize(wr);
|
|
|
|
};
|
|
|
|
}
|