rust/tests/ui/issues/issue-3753.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
688 B
Rust
Raw Normal View History

// run-pass
2012-10-24 15:32:36 +00:00
// Issue #3656
// Issue Name: pub method preceded by attribute can't be parsed
2012-10-24 15:32:36 +00:00
// Abstract: Visibility parsing failed when compiler parsing
use std::f64;
2015-03-30 13:38:27 +00:00
#[derive(Copy, Clone)]
pub struct Point {
x: f64,
y: f64
2012-10-24 15:32:36 +00:00
}
2015-03-30 13:38:27 +00:00
#[derive(Copy, Clone)]
2012-10-24 15:32:36 +00:00
pub enum Shape {
Circle(Point, f64),
2012-10-24 15:32:36 +00:00
Rectangle(Point, Point)
}
impl Shape {
pub fn area(&self, sh: Shape) -> f64 {
2012-10-24 15:32:36 +00:00
match sh {
Shape::Circle(_, size) => f64::consts::PI * size * size,
Shape::Rectangle(Point {x, y}, Point {x: x2, y: y2}) => (x2 - x) * (y2 - y)
2012-10-24 15:32:36 +00:00
}
}
}
pub fn main(){
let s = Shape::Circle(Point { x: 1.0, y: 2.0 }, 3.0);
println!("{}", s.area(s));
}