2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2019-03-12 00:49:17 +00:00
|
|
|
//@ aux-build:issue-3979-traits.rs
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate issue_3979_traits;
|
2013-10-02 20:00:54 -07:00
|
|
|
use issue_3979_traits::{Positioned, Movable};
|
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
|
|
|
|
2013-02-14 11:47:00 -08:00
|
|
|
impl Positioned for Point {
|
2015-03-25 17:06:52 -07:00
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-19 12:09:52 -07:00
|
|
|
impl Movable for Point {}
|
2013-01-16 18:45:05 -08:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2013-02-22 16:08:16 -08: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
|
|
|
}
|