blob: c4d0e51c07e076d312e06d80bb6a99fbb82607e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
error[E0412]: cannot find type `Apple` in this scope
--> $DIR/issue-35675.rs:17:29
|
17 | fn should_return_fruit() -> Apple {
| ^^^^^
| |
| not found in this scope
| help: you can try using the variant's enum: `Fruit`
error[E0425]: cannot find function `Apple` in this scope
--> $DIR/issue-35675.rs:19:5
|
19 | Apple(5)
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
12 | use Fruit::Apple;
|
error[E0573]: expected type, found variant `Fruit::Apple`
--> $DIR/issue-35675.rs:23:33
|
23 | fn should_return_fruit_too() -> Fruit::Apple {
| ^^^^^^^^^^^^
| |
| not a type
| help: you can try using the variant's enum: `Fruit`
error[E0425]: cannot find function `Apple` in this scope
--> $DIR/issue-35675.rs:25:5
|
25 | Apple(5)
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
12 | use Fruit::Apple;
|
error[E0573]: expected type, found variant `Ok`
--> $DIR/issue-35675.rs:29:13
|
29 | fn foo() -> Ok {
| ^^ not a type
|
= help: there is an enum variant `std::prelude::v1::Ok`, try using `std::prelude::v1`?
= help: there is an enum variant `std::result::Result::Ok`, try using `std::result::Result`?
error[E0412]: cannot find type `Variant3` in this scope
--> $DIR/issue-35675.rs:34:13
|
34 | fn bar() -> Variant3 {
| ^^^^^^^^
| |
| not found in this scope
| help: you can try using the variant's enum: `x::Enum`
error[E0573]: expected type, found variant `Some`
--> $DIR/issue-35675.rs:38:13
|
38 | fn qux() -> Some {
| ^^^^ not a type
|
= help: there is an enum variant `std::prelude::v1::Option::Some`, try using `std::prelude::v1::Option`?
= help: there is an enum variant `std::prelude::v1::Some`, try using `std::prelude::v1`?
error: aborting due to 7 previous errors
|