2017-05-10 14:02:49 +00:00
|
|
|
// these two HELPs are actually in a new line between this line and the `enum Fruit` line
|
2017-12-10 20:29:24 +00:00
|
|
|
enum Fruit {
|
2017-04-07 23:08:07 +00:00
|
|
|
Apple(i64),
|
|
|
|
Orange(i64),
|
|
|
|
}
|
|
|
|
|
|
|
|
fn should_return_fruit() -> Apple {
|
|
|
|
//~^ ERROR cannot find type `Apple` in this scope
|
|
|
|
Apple(5)
|
2019-10-15 00:20:50 +00:00
|
|
|
//~^ ERROR cannot find function, tuple struct or tuple variant `Apple` in this scope
|
2017-04-07 23:08:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn should_return_fruit_too() -> Fruit::Apple {
|
|
|
|
//~^ ERROR expected type, found variant `Fruit::Apple`
|
|
|
|
Apple(5)
|
2019-10-15 00:20:50 +00:00
|
|
|
//~^ ERROR cannot find function, tuple struct or tuple variant `Apple` in this scope
|
2017-04-07 23:08:07 +00:00
|
|
|
}
|
|
|
|
|
2017-07-29 23:28:30 +00:00
|
|
|
fn foo() -> Ok {
|
|
|
|
//~^ ERROR expected type, found variant `Ok`
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-04-07 23:08:07 +00:00
|
|
|
fn bar() -> Variant3 {
|
|
|
|
//~^ ERROR cannot find type `Variant3` in this scope
|
|
|
|
}
|
|
|
|
|
2017-07-29 23:28:30 +00:00
|
|
|
fn qux() -> Some {
|
|
|
|
//~^ ERROR expected type, found variant `Some`
|
|
|
|
Some(1)
|
|
|
|
}
|
|
|
|
|
2017-04-07 23:08:07 +00:00
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
mod x {
|
2020-06-13 17:58:46 +00:00
|
|
|
pub enum Enum {
|
2017-04-07 23:08:07 +00:00
|
|
|
Variant1,
|
|
|
|
Variant2(),
|
|
|
|
Variant3(usize),
|
|
|
|
Variant4 {},
|
|
|
|
}
|
|
|
|
}
|