2012-12-10 19:32:48 -06: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-07-12 20:04:40 -05:00
|
|
|
trait connection {
|
|
|
|
fn read() -> int;
|
|
|
|
}
|
|
|
|
|
2013-02-20 19:07:17 -06:00
|
|
|
trait connection_factory<C:connection> {
|
2012-07-12 20:04:40 -05:00
|
|
|
fn create() -> C;
|
|
|
|
}
|
|
|
|
|
|
|
|
type my_connection = ();
|
|
|
|
type my_connection_factory = ();
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl connection for () {
|
2012-07-12 20:04:40 -05:00
|
|
|
fn read() -> int { 43 }
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl connection_factory<my_connection> for my_connection_factory {
|
2012-07-12 20:04:40 -05:00
|
|
|
fn create() -> my_connection { () }
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-07-12 20:04:40 -05:00
|
|
|
let factory = ();
|
|
|
|
let connection = factory.create();
|
|
|
|
let result = connection.read();
|
|
|
|
assert result == 43;
|
|
|
|
}
|