Changeset 509ec82 for tests/typedefRedef.cfa
- Timestamp:
- Dec 1, 2024, 9:04:12 PM (10 months ago)
- Branches:
- master
- Children:
- eae8b37
- Parents:
- 3e2e9b2 (diff), 1c0a3a4 (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/typedefRedef.cfa
r3e2e9b2 r509ec82 30 30 // if a typedef has an array dimension, it can only be redefined to the same dimension 31 31 typedef int ARR[2]; 32 #endif 33 34 typedef [ float[], char[], int[] ] ARRSa; 35 typedef [ float[], char[], int[] ] ARRSa; 36 #ifdef ERR1 37 typedef [ float[], char[2], int[] ] ARRSa; 38 #endif 39 40 typedef int ARRSb[][1][2][3]; 41 typedef int ARRSb[][1][2][3]; 42 #ifdef ERR1 43 typedef int ARRSb[][1][2][99]; 32 44 #endif 33 45
Note:
See TracChangeset
for help on using the changeset viewer.