Changeset e874605 for tests/enum_tests
- Timestamp:
- Oct 28, 2022, 3:11:57 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 93d2219
- Parents:
- 77de429
- Location:
- tests/enum_tests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/enum_tests/.expect/enumInlineValue.txt
r77de429 re874605 1 1 enumB.A is 5 2 enumB.B is 102 enumB.B is 6 3 3 enumB.D is 11 4 4 enumB.E is 12 -
tests/enum_tests/.expect/qualifiedEnum.cfa
r77de429 re874605 1 l : 01 l :1 -
tests/enum_tests/enumInlineValue.cfa
r77de429 re874605 6 6 enum enumB { 7 7 inline enumA, 8 E , B=108 E 9 9 }; 10 10 -
tests/enum_tests/qualifiedEnum.cfa
r77de429 re874605 8 8 9 9 int main() { 10 enum Level l = Level. LOW;10 enum Level l = Level.MEDIUM; 11 11 sout | "l :" | l; 12 12 return 0;
Note: See TracChangeset
for help on using the changeset viewer.