Skip to content

Commit eb7f429

Browse files
committed
Move resolve diagnostic instability to compile-fail
The produced paths aren't stable between builds, since reporting paths inside resolve, before resolve is finished might produce paths resolved to type aliases instead of the concrete type. Compile-fail tests can match just parts of messages, so they don't "suffer" from this issue. This is just a workaround, the instability should be fixed in the future.
1 parent a9d9a4a commit eb7f429

File tree

3 files changed

+70
-37
lines changed

3 files changed

+70
-37
lines changed

src/test/compile-fail/issue-35675.rs

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// these two HELPs are actually in a new line between this line and the `enum Fruit` line
12+
enum Fruit { //~ HELP possible candidate is found in another module, you can import it into scope
13+
//~^ HELP possible candidate is found in another module, you can import it into scope
14+
Apple(i64),
15+
Orange(i64),
16+
}
17+
18+
fn should_return_fruit() -> Apple {
19+
//~^ ERROR cannot find type `Apple` in this scope
20+
//~| NOTE not found in this scope
21+
//~| HELP you can try using the variant's enum
22+
Apple(5)
23+
//~^ ERROR cannot find function `Apple` in this scope
24+
//~| NOTE not found in this scope
25+
}
26+
27+
fn should_return_fruit_too() -> Fruit::Apple {
28+
//~^ ERROR expected type, found variant `Fruit::Apple`
29+
//~| HELP you can try using the variant's enum
30+
//~| NOTE not a type
31+
Apple(5)
32+
//~^ ERROR cannot find function `Apple` in this scope
33+
//~| NOTE not found in this scope
34+
}
35+
36+
fn foo() -> Ok {
37+
//~^ ERROR expected type, found variant `Ok`
38+
//~| NOTE not a type
39+
//~| HELP there is an enum variant
40+
//~| HELP there is an enum variant
41+
Ok(())
42+
}
43+
44+
fn bar() -> Variant3 {
45+
//~^ ERROR cannot find type `Variant3` in this scope
46+
//~| HELP you can try using the variant's enum
47+
//~| NOTE not found in this scope
48+
}
49+
50+
fn qux() -> Some {
51+
//~^ ERROR expected type, found variant `Some`
52+
//~| NOTE not a type
53+
//~| HELP there is an enum variant
54+
//~| HELP there is an enum variant
55+
Some(1)
56+
}
57+
58+
fn main() {}
59+
60+
mod x {
61+
enum Enum {
62+
Variant1,
63+
Variant2(),
64+
Variant3(usize),
65+
Variant4 {},
66+
}
67+
}

src/test/ui/issue-35675.rs

-16
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,11 @@ fn should_return_fruit_too() -> Fruit::Apple {
3333
//~| NOTE not found in this scope
3434
}
3535

36-
fn foo() -> Ok {
37-
//~^ ERROR expected type, found variant `Ok`
38-
//~| NOTE not a type
39-
//~| HELP there is an enum variant
40-
//~| HELP there is an enum variant
41-
Ok(())
42-
}
43-
4436
fn bar() -> Variant3 {
4537
//~^ ERROR cannot find type `Variant3` in this scope
4638
//~| NOTE not found in this scope
4739
}
4840

49-
fn qux() -> Some {
50-
//~^ ERROR expected type, found variant `Some`
51-
//~| NOTE not a type
52-
//~| HELP there is an enum variant
53-
//~| HELP there is an enum variant
54-
Some(1)
55-
}
56-
5741
fn main() {}
5842

5943
mod x {

src/test/ui/issue-35675.stderr

+3-21
Original file line numberDiff line numberDiff line change
@@ -38,32 +38,14 @@ help: possible candidate is found in another module, you can import it into scop
3838
12 | use Fruit::Apple;
3939
|
4040

41-
error[E0573]: expected type, found variant `Ok`
42-
--> $DIR/issue-35675.rs:36:13
43-
|
44-
36 | fn foo() -> Ok {
45-
| ^^ not a type
46-
|
47-
= help: there is an enum variant `std::prelude::v1::Ok`, try using `std::prelude::v1`?
48-
= help: there is an enum variant `std::result::Result::Ok`, try using `std::result::Result`?
49-
5041
error[E0412]: cannot find type `Variant3` in this scope
51-
--> $DIR/issue-35675.rs:44:13
42+
--> $DIR/issue-35675.rs:36:13
5243
|
53-
44 | fn bar() -> Variant3 {
44+
36 | fn bar() -> Variant3 {
5445
| ^^^^^^^^
5546
| |
5647
| not found in this scope
5748
| help: you can try using the variant's enum: `x::Enum`
5849

59-
error[E0573]: expected type, found variant `Some`
60-
--> $DIR/issue-35675.rs:49:13
61-
|
62-
49 | fn qux() -> Some {
63-
| ^^^^ not a type
64-
|
65-
= help: there is an enum variant `std::option::Option::Some`, try using `std::option::Option`?
66-
= help: there is an enum variant `std::prelude::v1::Some`, try using `std::prelude::v1`?
67-
68-
error: aborting due to 7 previous errors
50+
error: aborting due to 5 previous errors
6951

0 commit comments

Comments
 (0)