Skip to content

Commit e9224b3

Browse files
author
mejrs
committed
Add newline
1 parent f3ac328 commit e9224b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/ui/suggestions/inner_type.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ fn main() {
3737
another_item.write().unwrap().some_mutable_method();
3838
//~^ ERROR no method named `some_mutable_method` found for struct `RwLock` in the current scope [E0599]
3939
//~| HELP use `.write()` to mutably borrow the `Struct<u32>`, blocking the current thread until it can be acquired
40-
}
40+
}

src/test/ui/suggestions/inner_type.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ fn main() {
3737
another_item.some_mutable_method();
3838
//~^ ERROR no method named `some_mutable_method` found for struct `RwLock` in the current scope [E0599]
3939
//~| HELP use `.write()` to mutably borrow the `Struct<u32>`, blocking the current thread until it can be acquired
40-
}
40+
}

src/test/ui/suggestions/inner_type2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ fn main() {
2323
item.method();
2424
//~^ ERROR no method named `method` found for union `MaybeUninit` in the current scope [E0599]
2525
//~| HELP if this `MaybeUninit::<Struct<u32>>` has been initialized, use one of the `assume_init` methods to access the inner value
26-
}
26+
}

0 commit comments

Comments
 (0)