Remove tabs

This commit is contained in:
John Kåre Alsaker 2017-07-16 04:05:35 +02:00
parent b2d931abbb
commit d32428bc5f
2 changed files with 6 additions and 6 deletions

View file

@ -1,10 +1,10 @@
error[E0624]: borrow may still be in use when generator yields
--> $DIR/yield-in-args-rev.rs:20:15
|
20 | \t\tfoo(yield, &b); //~ ERROR
| \t\t ----- ^
| \t\t |
| \t\t possible yield occurs here
20 | foo(yield, &b); //~ ERROR
| ----- ^
| |
| possible yield occurs here
error: aborting due to previous error

View file

@ -1,8 +1,8 @@
error[E0624]: borrow may still be in use when generator yields
--> $DIR/yield-in-args.rs:18:8
|
18 | \t\tfoo(&b, yield); //~ ERROR
| \t\t ^ ----- possible yield occurs here
18 | foo(&b, yield); //~ ERROR
| ^ ----- possible yield occurs here
error: aborting due to previous error