2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-07-24 18:39:26 -05:00
|
|
|
trait Product {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn product(&self) -> isize;
|
2012-07-24 18:39:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Foo {
|
2015-03-25 19:06:52 -05:00
|
|
|
x: isize,
|
|
|
|
y: isize,
|
2012-07-24 18:39:26 -05:00
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl Foo {
|
2015-03-25 19:06:52 -05:00
|
|
|
pub fn sum(&self) -> isize {
|
2012-07-24 18:39:26 -05:00
|
|
|
self.x + self.y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Product for Foo {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn product(&self) -> isize {
|
2012-07-24 18:39:26 -05:00
|
|
|
self.x * self.y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
fn Foo(x: isize, y: isize) -> Foo {
|
2012-07-24 18:39:26 -05:00
|
|
|
Foo { x: x, y: y }
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-07-24 18:39:26 -05:00
|
|
|
let foo = Foo(3, 20);
|
2013-09-25 00:16:43 -05:00
|
|
|
println!("{} {}", foo.sum(), foo.product());
|
2012-07-24 18:39:26 -05:00
|
|
|
}
|