2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(non_snake_case)]
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-12-22 09:04:23 -08:00
|
|
|
use std::ops::Add;
|
|
|
|
|
2013-01-16 18:45:05 -08:00
|
|
|
trait Positioned<S> {
|
2017-06-25 05:29:10 +03:00
|
|
|
fn SetX(&mut self, _: S);
|
2013-01-16 18:45:05 -08:00
|
|
|
fn X(&self) -> S;
|
|
|
|
}
|
|
|
|
|
2014-12-31 15:45:13 -05:00
|
|
|
trait Movable<S: Add<Output=S>>: Positioned<S> {
|
2013-07-23 13:46:51 -07:00
|
|
|
fn translate(&mut self, dx: S) {
|
|
|
|
let x = self.X() + dx;
|
|
|
|
self.SetX(x);
|
2013-01-16 18:45:05 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
struct Point { x: isize, y: isize }
|
2013-01-16 18:45:05 -08:00
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
impl Positioned<isize> for Point {
|
|
|
|
fn SetX(&mut self, x: isize) {
|
2013-01-16 18:45:05 -08:00
|
|
|
self.x = x;
|
|
|
|
}
|
2015-03-25 17:06:52 -07:00
|
|
|
fn X(&self) -> isize {
|
2013-01-16 18:45:05 -08:00
|
|
|
self.x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
impl Movable<isize> for Point {}
|
2013-01-16 18:45:05 -08:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2013-07-23 13:46:51 -07:00
|
|
|
let mut p = Point{ x: 1, y: 2};
|
2013-01-16 18:45:05 -08:00
|
|
|
p.translate(3);
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(p.X(), 4);
|
2013-01-16 18:45:05 -08:00
|
|
|
}
|