]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-35675.rs
Rollup merge of #52946 - Ajacmac:doc-impl-from, r=GuillaumeGomez
[rust.git] / src / test / ui / issues / 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 {
13     Apple(i64),
14     Orange(i64),
15 }
16
17 fn should_return_fruit() -> Apple {
18     //~^ ERROR cannot find type `Apple` in this scope
19     Apple(5)
20     //~^ ERROR cannot find function `Apple` in this scope
21 }
22
23 fn should_return_fruit_too() -> Fruit::Apple {
24     //~^ ERROR expected type, found variant `Fruit::Apple`
25     Apple(5)
26     //~^ ERROR cannot find function `Apple` in this scope
27 }
28
29 fn foo() -> Ok {
30     //~^ ERROR expected type, found variant `Ok`
31     Ok(())
32 }
33
34 fn bar() -> Variant3 {
35     //~^ ERROR cannot find type `Variant3` in this scope
36 }
37
38 fn qux() -> Some {
39     //~^ ERROR expected type, found variant `Some`
40     Some(1)
41 }
42
43 fn main() {}
44
45 mod x {
46     enum Enum {
47         Variant1,
48         Variant2(),
49         Variant3(usize),
50         Variant4 {},
51     }
52 }