]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/issue-35675.rs
Rollup merge of #41957 - llogiq:clippy-libsyntax, r=petrochenkov
[rust.git] / src / test / compile-fail / issue-35675.rs
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     //~^ HELP there is an enum variant `Fruit::Apple`, did you mean to use `Fruit`?
16     //~| HELP there is an enum variant `Fruit::Apple`, did you mean to use `Fruit`?
17     Orange(i64),
18 }
19
20 fn should_return_fruit() -> Apple {
21     //~^ ERROR cannot find type `Apple` in this scope
22     //~| NOTE not found in this scope
23     Apple(5)
24     //~^ ERROR cannot find function `Apple` in this scope
25     //~| NOTE not found in this scope
26 }
27
28 fn should_return_fruit_too() -> Fruit::Apple {
29     //~^ ERROR expected type, found variant `Fruit::Apple`
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     //~| NOTE not found in this scope
47 }
48
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
57 fn main() {}
58
59 mod x {
60     enum Enum {
61         Variant1,
62         Variant2(),
63         Variant3(usize),
64         //~^ HELP there is an enum variant `x::Enum::Variant3`, did you mean to use `x::Enum`?
65         Variant4 {},
66     }
67 }