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