2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2019-03-11 19:49:17 -05:00
|
|
|
// aux-build:issue-3979-traits.rs
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate issue_3979_traits;
|
2013-10-02 22:00:54 -05:00
|
|
|
use issue_3979_traits::{Positioned, Movable};
|
2013-01-16 20:45:05 -06:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
struct Point { x: isize, y: isize }
|
2013-01-16 20:45:05 -06:00
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Positioned for Point {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn SetX(&mut self, x: isize) {
|
2013-01-16 20:45:05 -06:00
|
|
|
self.x = x;
|
|
|
|
}
|
2015-03-25 19:06:52 -05:00
|
|
|
fn X(&self) -> isize {
|
2013-01-16 20:45:05 -06:00
|
|
|
self.x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 14:09:52 -05:00
|
|
|
impl Movable for Point {}
|
2013-01-16 20:45:05 -06:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-02-22 18:08:16 -06:00
|
|
|
let mut p = Point{ x: 1, y: 2};
|
2013-01-16 20:45:05 -06:00
|
|
|
p.translate(3);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(p.X(), 4);
|
2013-01-16 20:45:05 -06:00
|
|
|
}
|