From f859f2585b0167dfd9ef22d88d992ba6fe55e158 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Wed, 10 May 2017 16:02:49 +0200 Subject: [PATCH] Update a compile-fail test --- src/test/compile-fail/issue-35675.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/compile-fail/issue-35675.rs b/src/test/compile-fail/issue-35675.rs index f990c2c42fe1..001c1f2eddca 100644 --- a/src/test/compile-fail/issue-35675.rs +++ b/src/test/compile-fail/issue-35675.rs @@ -8,7 +8,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -enum Fruit { +// these two HELPs are actually in a new line between this line and the `enum Fruit` line +enum Fruit { //~ HELP possible candidate is found in another module, you can import it into scope + //~^ HELP possible candidate is found in another module, you can import it into scope Apple(i64), //~^ HELP there is an enum variant `Fruit::Apple`, did you mean to use `Fruit`? //~| HELP there is an enum variant `Fruit::Apple`, did you mean to use `Fruit`? @@ -21,7 +23,6 @@ fn should_return_fruit() -> Apple { Apple(5) //~^ ERROR cannot find function `Apple` in this scope //~| NOTE not found in this scope - //~| HELP possible candidate is found in another module, you can import it into scope } fn should_return_fruit_too() -> Fruit::Apple { @@ -30,7 +31,6 @@ fn should_return_fruit_too() -> Fruit::Apple { Apple(5) //~^ ERROR cannot find function `Apple` in this scope //~| NOTE not found in this scope - //~| HELP possible candidate is found in another module, you can import it into scope } fn foo() -> Ok {