Skip to content

Commit 422667a

Browse files
committed
Use FIXME instead of TODO
1 parent 5658c28 commit 422667a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/compile-fail/generator/borrowing.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fn main() {
2323
let _b = {
2424
let a = 3;
2525
|| {
26-
let _: () = gen arg; // TODO: shouldn't be needed for inference
26+
let _: () = gen arg; // FIXME: shouldn't be needed for inference
2727
yield &a
2828
//~^ ERROR: `a` does not live long enough
2929
}

src/test/run-pass/generator/drop-env.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fn t2() {
5959
fn t3() {
6060
let b = B;
6161
let foo = || {
62-
let _: () = gen arg; // TODO: this line should not be necessary
62+
let _: () = gen arg; // FIXME: this line should not be necessary
6363
yield;
6464
drop(b);
6565
};

0 commit comments

Comments
 (0)