Changeset 81e768d for tests/typedefRedef.cfa
- Timestamp:
- Nov 28, 2024, 4:34:08 PM (3 weeks ago)
- Branches:
- master
- Children:
- 46c4dea
- Parents:
- f5e37a4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/typedefRedef.cfa
rf5e37a4 r81e768d 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.