Remove "TODO" in comment in test

This commit is contained in:
Matthew Hall
2020-03-28 21:24:26 +00:00
parent ecc2615ba2
commit 77bb9a56f1
@@ -665,7 +665,7 @@ enum A {
}
fn foo(a: A) {
match a {
// TODO: Fill this in<|>
// foo bar baz<|>
A::One => {}
// This is where the rest should be
}
@@ -678,7 +678,7 @@ enum A {
}
fn foo(a: A) {
match <|>a {
// TODO: Fill this in
// foo bar baz
A::One => {}
// This is where the rest should be
A::Two => {}
@@ -699,7 +699,7 @@ enum A {
}
fn foo(a: A) {
match a {
// TODO: Fill this in<|>
// foo bar baz<|>
}
}
"#,
@@ -710,7 +710,7 @@ enum A {
}
fn foo(a: A) {
match <|>a {
// TODO: Fill this in
// foo bar baz
A::One => {}
A::Two => {}
}