mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
16 lines
329 B
Rust
16 lines
329 B
Rust
enum PutDown { Set }
|
|
enum AffixHeart { Set }
|
|
enum CauseToBe { Set }
|
|
enum Determine { Set }
|
|
enum TableDishesAction { Set }
|
|
enum Solidify { Set }
|
|
enum UnorderedCollection { Set }
|
|
|
|
fn setup() -> Set { Set }
|
|
//~^ ERROR cannot find type `Set` in this scope
|
|
//~| ERROR cannot find value `Set` in this scope
|
|
|
|
fn main() {
|
|
setup();
|
|
}
|