Changeset d60a4c2 for tests/enum.cfa
- Timestamp:
- Jan 11, 2025, 5:48:46 PM (8 months ago)
- Branches:
- master
- Children:
- f886608
- Parents:
- 7d65715f (diff), 32a119e9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/enum.cfa
r7d65715f rd60a4c2 19 19 Pear, 20 20 Mango 21 } fruit = Mango; 22 enum Fruits f1; 23 Fruits f2; 21 } fruit = Mango; (void) fruit; 22 enum Fruits f1; (void) f1; 23 Fruits f2; (void) f2; 24 24 } 25 25 … … 41 41 42 42 //Dummy main 43 int main( int argc, char const *argv[]) {43 int main() { 44 44 printf( "done\n" ); // non-empty .expect file 45 45 }
Note:
See TracChangeset
for help on using the changeset viewer.