source: src/tests/Enum.c@ 8b52686

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 8b52686 was 10dc7491, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

add more tests

  • Property mode set to 100644
File size: 303 bytes
Line 
1//Testing enum declaration
2enum Colours {
3 Red,
4 Yellow,
5 Pink,
6 Blue,
7 Purple,
8 Orange,
9 Green
10};
11
12enum Colours c1;
13Colours c2;
14
15void f( void ) {
16 enum Fruits {
17 Apple,
18 Banana,
19 Pear,
20 Mango
21 } fruit = Mango;
22 enum Fruits f1;
23 Fruits f2;
24}
25
26//Dummy main
27int main(int argc, char const *argv[]) {
28}
Note: See TracBrowser for help on using the repository browser.