Changeset 66812dd for tests/array.cfa
- Timestamp:
- Sep 27, 2020, 10:00:39 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 0a19c51
- Parents:
- bd47f35
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/array.cfa
rbd47f35 r66812dd 11 11 // Created On : Tue Feb 19 21:18:06 2019 12 12 // Last Modified By : Peter A. Buhr 13 // Last Modified On : Tue Feb 19 21:18:46 201914 // Update Count : 113 // Last Modified On : Sun Sep 27 09:05:40 2020 14 // Update Count : 4 15 15 // 16 16 17 int a1[ ];17 int a1[0]; 18 18 //int a2[*]; 19 19 //double a4[3.0]; 20 20 21 int m1[ ][3];21 int m1[0][3]; 22 22 //int m2[*][*]; 23 23 int m4[3][3]; … … 49 49 } 50 50 51 int main() {} 51 int main() { 52 #pragma message( "Compiled" ) // force non-empty .expect file 53 } 52 54 53 55 // Local Variables: //
Note: See TracChangeset
for help on using the changeset viewer.