Changeset 12df6fe for tests/enum_tests
- Timestamp:
- Sep 19, 2022, 11:48:13 AM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 4520b77e
- Parents:
- b0d9ff7
- Location:
- tests/enum_tests
- Files:
-
- 8 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/enum_tests/structEnum.cfa
rb0d9ff7 r12df6fe 24 24 struct Point apple = first; 25 25 // Failed due to Qualified name is currently unimplemented. 26 struct Point banana = PointEnum.first;27 26 28 27 int main() { 29 28 PointEnum vals = second; 30 29 PointEnum val2; 31 // P132 val2 = vals;30 // The failing line: assignment 31 // val2 = vals; 33 32 34 33 printf("%d %c\n", apple.x, apple.y);
Note: See TracChangeset
for help on using the changeset viewer.