Update snapshot test files.

This commit is contained in:
eth-p 2018-05-12 14:04:54 -07:00
parent b4cfc9633c
commit 9f005d115d
No known key found for this signature in database
GPG Key ID: 1F8DF8091CD46FBC
6 changed files with 141 additions and 141 deletions

View File

@ -1,6 +1,6 @@
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────
│ File: sample.rs
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────
│ struct Rectangle {
│ width: u32,
│ height: u32,
@ -22,4 +22,4 @@
+ │ fn perimeter(rectangle: &Rectangle) -> u32 {
+ │ (rectangle.width + rectangle.height) * 2
+ │ }
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────

View File

@ -19,4 +19,4 @@
+ │ fn perimeter(rectangle: &Rectangle) -> u32 {
+ │ (rectangle.width + rectangle.height) * 2
+ │ }
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────

View File

@ -1,6 +1,6 @@
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────
│ File: sample.rs
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────
1 │ struct Rectangle {
2 │ width: u32,
3 │ height: u32,
@ -22,4 +22,4 @@
19 │ fn perimeter(rectangle: &Rectangle) -> u32 {
20 │ (rectangle.width + rectangle.height) * 2
21 │ }
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────

View File

@ -1,25 +1,25 @@
───────────────────────────────────────────────────────────────────────────────
File: sample.rs
───────────────────────────────────────────────────────────────────────────────
struct Rectangle {
width: u32,
height: u32,
}
fn main() {
let rect1 = Rectangle { width: 30, height: 50 };
println!(
"The perimeter of the rectangle is {} pixels.",
perimeter(&rect1)
);
}
fn area(rectangle: &Rectangle) -> u32 {
rectangle.width * rectangle.height
}
fn perimeter(rectangle: &Rectangle) -> u32 {
(rectangle.width + rectangle.height) * 2
}
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────
File: sample.rs
───────────────────────────────────────────────────────────────────────────────
struct Rectangle {
width: u32,
height: u32,
}
fn main() {
let rect1 = Rectangle { width: 30, height: 50 };
println!(
"The perimeter of the rectangle is {} pixels.",
perimeter(&rect1)
);
}
fn area(rectangle: &Rectangle) -> u32 {
rectangle.width * rectangle.height
}
fn perimeter(rectangle: &Rectangle) -> u32 {
(rectangle.width + rectangle.height) * 2
}
───────────────────────────────────────────────────────────────────────────────

View File

@ -19,4 +19,4 @@
19 │ fn perimeter(rectangle: &Rectangle) -> u32 {
20 │ (rectangle.width + rectangle.height) * 2
21 │ }
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────

View File

@ -1,22 +1,22 @@
struct Rectangle {
width: u32,
height: u32,
}
fn main() {
let rect1 = Rectangle { width: 30, height: 50 };
println!(
"The perimeter of the rectangle is {} pixels.",
perimeter(&rect1)
);
}
fn area(rectangle: &Rectangle) -> u32 {
rectangle.width * rectangle.height
}
fn perimeter(rectangle: &Rectangle) -> u32 {
(rectangle.width + rectangle.height) * 2
}
───────────────────────────────────────────────────────────────────────────────
struct Rectangle {
width: u32,
height: u32,
}
fn main() {
let rect1 = Rectangle { width: 30, height: 50 };
println!(
"The perimeter of the rectangle is {} pixels.",
perimeter(&rect1)
);
}
fn area(rectangle: &Rectangle) -> u32 {
rectangle.width * rectangle.height
}
fn perimeter(rectangle: &Rectangle) -> u32 {
(rectangle.width + rectangle.height) * 2
}
───────────────────────────────────────────────────────────────────────────────