2018-08-30 12:18:55 +00:00
|
|
|
//@ run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 13:02:01 +00:00
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
2013-07-23 20:46:51 +00:00
|
|
|
// There is some other borrowck bug, so we make the stuff not mut.
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2014-12-22 17:04:23 +00:00
|
|
|
use std::ops::Add;
|
|
|
|
|
2013-07-23 20:46:51 +00:00
|
|
|
trait Positioned<S> {
|
2017-06-25 02:29:10 +00:00
|
|
|
fn SetX(&mut self, _: S);
|
2013-07-23 20:46:51 +00:00
|
|
|
fn X(&self) -> S;
|
|
|
|
}
|
|
|
|
|
2014-12-31 20:45:13 +00:00
|
|
|
trait Movable<S: Add<Output=S>>: Positioned<S> {
|
2013-07-23 20:46:51 +00:00
|
|
|
fn translate(&mut self, dx: S) {
|
|
|
|
let x = self.X() + dx;
|
|
|
|
self.SetX(x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Point<S> { x: S, y: S }
|
|
|
|
|
|
|
|
impl<S: Clone> Positioned<S> for Point<S> {
|
|
|
|
fn SetX(&mut self, x: S) {
|
|
|
|
self.x = x;
|
|
|
|
}
|
|
|
|
fn X(&self) -> S {
|
|
|
|
self.x.clone()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-31 20:45:13 +00:00
|
|
|
impl<S: Clone + Add<Output=S>> Movable<S> for Point<S> {}
|
2013-07-23 20:46:51 +00:00
|
|
|
|
|
|
|
pub fn main() {
|
2015-01-25 21:05:03 +00:00
|
|
|
let mut p = Point{ x: 1, y: 2};
|
2013-07-23 20:46:51 +00:00
|
|
|
p.translate(3);
|
|
|
|
assert_eq!(p.X(), 4);
|
|
|
|
}
|