1 enum PutDown { Set }
2 enum AffixHeart { Set }
3 enum CauseToBe { Set }
4 enum Determine { Set }
5 enum TableDishesAction { Set }
6 enum Solidify { Set }
7 enum UnorderedCollection { Set }
8 
setup() -> Set9 fn setup() -> Set { Set }
10 //~^ ERROR cannot find type `Set` in this scope
11 //~| ERROR cannot find value `Set` in this scope
12 
main()13 fn main() {
14     setup();
15 }
16