Skip to content

Commit 7d0198d

Browse files
committed
test: fix some indents
1 parent 912ab64 commit 7d0198d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/test/compile-fail/no-send-res-ports.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fn main() {
2020
_x: Port<()>,
2121
}
2222

23-
impl Drop for foo {
23+
impl Drop for foo {
2424
fn drop(&mut self) {}
2525
}
2626

src/test/run-pass/issue-2718.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ pub mod pipes {
165165
p: Option<*const packet<T>>,
166166
}
167167

168-
impl<T:Send> Drop for send_packet<T> {
168+
impl<T:Send> Drop for send_packet<T> {
169169
fn drop(&mut self) {
170170
unsafe {
171171
if self.p != None {
@@ -194,7 +194,7 @@ pub mod pipes {
194194
p: Option<*const packet<T>>,
195195
}
196196

197-
impl<T:Send> Drop for recv_packet<T> {
197+
impl<T:Send> Drop for recv_packet<T> {
198198
fn drop(&mut self) {
199199
unsafe {
200200
if self.p != None {

0 commit comments

Comments
 (0)