2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 08:02:01 -05:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![allow(non_snake_case)]
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2012-07-12 20:04:40 -05:00
|
|
|
trait connection {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn read(&self) -> isize;
|
2012-07-12 20:04:40 -05:00
|
|
|
}
|
|
|
|
|
2013-02-20 19:07:17 -06:00
|
|
|
trait connection_factory<C:connection> {
|
2013-03-12 21:32:14 -05:00
|
|
|
fn create(&self) -> C;
|
2012-07-12 20:04:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type my_connection = ();
|
|
|
|
type my_connection_factory = ();
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl connection for () {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn read(&self) -> isize { 43 }
|
2012-07-12 20:04:40 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl connection_factory<my_connection> for my_connection_factory {
|
2013-03-12 21:32:14 -05:00
|
|
|
fn create(&self) -> my_connection { () }
|
2012-07-12 20:04:40 -05:00
|
|
|
}
|
|
|
|
|
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();
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(result, 43);
|
2012-07-12 20:04:40 -05:00
|
|
|
}
|