mirror of https://github.com/rwf2/Rocket.git
Remove superfluous semicolons.
This commit is contained in:
parent
a0d4a4749a
commit
031948c1da
|
@ -278,7 +278,7 @@ fn check_complex() {
|
|||
#[test]
|
||||
fn check_location_promotion() {
|
||||
struct S1(String);
|
||||
struct S2 { name: String };
|
||||
struct S2 { name: String }
|
||||
|
||||
let s1 = S1("Bob".into());
|
||||
let s2 = S2 { name: "Bob".into() };
|
||||
|
|
|
@ -522,7 +522,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn send_and_sync() {
|
||||
fn assert<T: Send + Sync>() {};
|
||||
fn assert<T: Send + Sync>() {}
|
||||
assert::<Origin<'_>>();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue